-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
44 lines (44 loc) · 1.35 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
{
"name": "react-simple-boilerplate",
"version": "0.1.0",
"private": true,
"dependencies": {
"i18next": "^8.3.0",
"normalize.css": "^6.0.0",
"prop-types": "^15.5.8",
"react": "^15.5.4",
"react-dom": "^15.5.4",
"react-i18next": "^4.1.0",
"react-redux": "^5.0.4",
"react-router": "^4.1.1",
"react-router-dom": "^4.1.1",
"redux": "^3.6.0",
"redux-persist": "^4.8.0",
"redux-thunk": "^2.2.0"
},
"devDependencies": {
"@kadira/storybook": "^2.35.3",
"eslint": "^3.19.0",
"eslint-plugin-react": "^6.10.3",
"fetch-mock": "^5.10.0",
"node-sass": "^4.5.2",
"npm-run-all": "^4.0.2",
"react-scripts": "0.9.5",
"redux-mock-store": "^1.2.3",
"storybook-addon-scissors": "^2.0.4",
"storybook-router": "^0.1.1",
"storyshots": "^3.2.2"
},
"scripts": {
"build-css": "node-sass src/ -o src/",
"watch-css": "npm run build-css && node-sass src/ -o src/ --watch --recursive",
"start-js": "react-scripts start",
"start": "npm-run-all -p watch-css start-js",
"build": "npm run build-css && react-scripts build",
"test": "npm run build-css && react-scripts test --env=jsdom --verbose",
"eject": "react-scripts eject",
"lint": "eslint src/* stories/*",
"start-sb": "start-storybook -p 9001 -c .storybook",
"storybook": "npm-run-all -p watch-css start-sb"
}
}