-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.56 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
{
"scripts": {
"start": "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 webpack --progress --config webpack/prod.config -p",
"storybook": "start-storybook -p 6006 -c storybook",
"build-storybook": "cross-env NODE_ENV=production build-storybook -c storybook",
"update-packages": "node scripts/update.js"
},
"devDependencies": {
"@kadira/storybook": "^2.35.3",
"babel-core": "^6.22.1",
"babel-eslint": "^7.1.1",
"babel-jest": "^18.0.0",
"babel-loader": "^6.2.10",
"babel-plugin-transform-runtime": "^6.22.0",
"babel-preset-es2015": "^6.22.0",
"babel-preset-react": "^6.22.0",
"babel-preset-stage-0": "^6.22.0",
"chai": "^3.5.0",
"clean-webpack-plugin": "^0.1.15",
"cross-env": "^3.1.4",
"css-loader": "^0.26.1",
"extract-text-webpack-plugin": "^2.0.0",
"file-loader": "^0.10.1",
"gulp": "^3.9.1",
"html-webpack-plugin": "^2.28.0",
"jest-cli": "^18.1.0",
"react-hot-loader": "3.0.0-beta.6",
"snazzy": "^6.0.0",
"standard": "^8.6.0",
"standard-loader": "^5.0.0",
"style-loader": "^0.13.1",
"url-loader": "^0.5.8",
"webpack": "^2.2.1",
"webpack-dashboard": "^0.3.0",
"webpack-dev-server": "^2.3.0"
},
"dependencies": {
"@fdaciuk/ajax": "^2.1.5",
"babel-runtime": "^6.22.0",
"react": "^15.4.2",
"react-dom": "^15.4.2"
}
}