-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 2.2 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
{
"name": "tacky-css",
"version": "0.0.3",
"main": "lib/index.js",
"repository": "[email protected]:tpict/tacky.git",
"author": "<[email protected]>",
"license": "MIT",
"private": false,
"scripts": {
"start": "webpack-dev-server --config webpack.config.js",
"test": "jest",
"debug": "node --inspect-brk node_modules/.bin/jest --runInBand --env=jsdom",
"build:lib": "cd packages/tacky-css && rm -r lib; yarn && tsc && cp package.json lib",
"publish:lib": "cd packages/tacky-css/lib && yarn publish",
"format:lib": "eslint --fix packages/tacky-css/src --ext ts"
},
"devDependencies": {
"@babel/core": "^7.11.4",
"@babel/plugin-proposal-class-properties": "^7.10.4",
"@babel/plugin-proposal-nullish-coalescing-operator": "^7.10.4",
"@babel/plugin-proposal-object-rest-spread": "^7.11.0",
"@babel/plugin-proposal-optional-chaining": "^7.11.0",
"@babel/plugin-transform-runtime": "^7.11.5",
"@babel/preset-env": "^7.11.0",
"@babel/preset-react": "^7.10.4",
"@babel/preset-typescript": "^7.10.4",
"@emotion/react": "^11.0.0-next.15",
"@types/jest": "^26.0.13",
"@types/lodash-es": "^4.17.3",
"@types/react": "^16.9.46",
"@types/react-dom": "^16.9.8",
"@typescript-eslint/eslint-plugin": "^3.10.0",
"@typescript-eslint/parser": "^3.10.0",
"babel-jest": "^26.3.0",
"babel-loader": "^8.1.0",
"babel-plugin-macros": "^2.8.0",
"clean-webpack-plugin": "^3.0.0",
"csstype": "^3.0.3",
"eslint": "^7.7.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-react": "^7.20.6",
"fork-ts-checker-webpack-plugin": "^5.1.0",
"html-webpack-plugin": "^4.3.0",
"jest": "^26.4.2",
"lodash-es": "^4.17.15",
"mdn-browser-compat-data": "git+https://github.com/mdn/browser-compat-data.git#e74deb234e870896575ef442a57d252c7677cb07",
"mdn-data": "git+https://github.com/mdn/data.git#3191d4b889364bca969dfcc84e490928d84710ef",
"prettier": "^2.1.0",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"tsconfig-paths-webpack-plugin": "^3.3.0",
"typescript": "^4.0.2",
"webpack": "^4.44.1",
"webpack-cli": "^3.3.12",
"webpack-dev-server": "^3.11.0"
}
}