This repository has been archived by the owner on Jun 15, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 51
/
Copy pathpackage.json
65 lines (65 loc) · 1.94 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
59
60
61
62
63
64
65
{
"scripts": {
"start": "yarn dev",
"dev": "webpack-dashboard -- node server.js",
"test": "jest --coverage",
"test:watch": "yarn test -- --watch",
"lint": "standard --parser babel-eslint --verbose | snazzy",
"lint:watch": "gulp",
"lint:fix": "standard --fix",
"build": "cross-env NODE_ENV=production BABEL_ENV=production webpack --progress --config webpack/prod.config -p",
"build:analyzer": "cross-env ANALYZER=true yarn build",
"storybook": "start-storybook -p 6006 -c storybook",
"storybook:build": "cross-env NODE_ENV=production BABEL_ENV=production build-storybook -c storybook",
"update-packages": "node scripts/update.js"
},
"jest": {
"moduleNameMapper": {
"^.+\\.css$": "<rootDir>/config/CSSStub.js"
}
},
"standard": {
"globals": [
"it",
"expect"
]
},
"devDependencies": {
"@storybook/react": "^3.2.8",
"babel-core": "^6.26.0",
"babel-eslint": "^8.0.0",
"babel-loader": "^7.1.2",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.6.0",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"chai": "^4.1.2",
"clean-webpack-plugin": "^0.1.16",
"cross-env": "^5.0.5",
"css-loader": "^0.28.7",
"extract-text-webpack-plugin": "^3.0.0",
"file-loader": "^0.11.2",
"gulp": "^3.9.1",
"html-webpack-plugin": "^2.30.1",
"jest": "^21.1.0",
"react-hot-loader": "3.0.0",
"react-test-renderer": "^15.6.1",
"snazzy": "^7.0.0",
"standard": "^10.0.3",
"standard-loader": "^6.0.1",
"style-loader": "^0.18.2",
"url-loader": "^0.5.9",
"webpack": "^3.6.0",
"webpack-bundle-analyzer": "^2.9.0",
"webpack-dashboard": "^1.0.0-5",
"webpack-dev-server": "^2.8.2"
},
"dependencies": {
"babel-runtime": "^6.26.0",
"preact": "^8.2.5",
"preact-compat": "^3.17.0",
"prop-types": "^15.5.10",
"react": "^15.6.1",
"react-dom": "^15.6.1"
}
}