forked from yingray/create-react-redux-app
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
34 lines (34 loc) · 1.03 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
{
"name": "create-react-redux-app",
"version": "1.0.0",
"homepage": "http://yingray.github.io/create-react-redux-app",
"scripts": {
"prestart": "npm run build:css",
"start": "npm run watch:css & react-scripts start",
"build": "npm run build:css && react-scripts build",
"build:css": "node-sass-chokidar src/styles -o src/styles",
"watch:css": "node-sass-chokidar src/styles -o src/styles --watch --recursive",
"predeploy": "npm run build",
"deploy": "gh-pages -d build",
"test": "react-scripts test --env=jsdom",
"eject": "react-scripts eject"
},
"dependencies": {
"react": "^16.2.0",
"react-dom": "^16.2.0"
},
"devDependencies": {
"api-book": "^0.2.4",
"babel-polyfill": "^6.26.0",
"expect": "^22.4.3",
"gh-pages": "^1.1.0",
"node-sass-chokidar": "^1.2.0",
"react-helmet": "^5.2.0",
"react-redux": "^5.0.7",
"react-router": "^3.2.1",
"react-router-redux": "^4.0.8",
"react-scripts": "^1.1.1",
"redux": "^3.7.2",
"redux-thunk": "^2.2.0"
}
}