forked from A-gambit/CSS-IN-JS-Benchmarks
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
48 lines (48 loc) · 1.37 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
{
"devDependencies": {
"babel": "6.5.2",
"babel-core": "6.22.1",
"babel-eslint": "7.1.1",
"babel-loader": "6.2.10",
"babel-plugin-add-module-exports": "0.1.2",
"babel-plugin-transform-async-to-generator": "6.24.1",
"babel-plugin-transform-class-properties": "6.23.0",
"babel-plugin-transform-regenerator": "6.24.1",
"babel-plugin-transform-runtime": "6.23.0",
"babel-preset-es2015": "6.22.0",
"babel-preset-react": "6.23.0",
"babel-preset-react-hmre": "1.1.1",
"babel-runtime": "6.23.0",
"connect": "^3.7.0",
"cross-env": "3.1.4",
"css-loader": "0.28.0",
"file-loader": "0.10.1",
"husky": "0.13.3",
"lerna": "2.0.0-rc.4",
"lighthouse": "4.2.0",
"lint-staged": "3.4.0",
"prettier": "1.2.2",
"react": "^15.5.4",
"react-dom": "^15.5.4",
"serve-static": "^1.14.1",
"shelljs": "0.7.7",
"style-loader": "0.16.1",
"webpack": "2.2.1",
"webpack-dev-server": "2.4.1",
"yargs": "6.6.0"
},
"scripts": {
"benchmark": "node ./packages/tests/",
"format": "find . -name '*.js' | grep -v node_modules | xargs prettier --trailing-comma es5 --single-quote --write",
"precommit": "lint-staged"
},
"lint-staged": {
"*.js": [
"prettier --trailing-comma es5 --single-quote --write",
"git add"
]
},
"dependencies": {
"babel-plugin-emotion": "^8.0.12"
}
}