-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 947 Bytes
/
package.json
File metadata and controls
38 lines (38 loc) · 947 Bytes
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
{
"name": "react-redux-todo-app",
"version": "v1.2.1",
"homepage": "https://rc-chandan.github.io/react-redux-training/",
"author": {
"name": "Chandan Kumar Rana",
"email": "chandan316@outlook.com",
"url": "https://rc-chandan.github.io"
},
"license": "MIT",
"keywords": [
"react training",
"redux training",
"react redux training",
"react redux todo app"
],
"dependencies": {
"react": "^16.1.0",
"react-dom": "^16.1.0",
"react-redux": "^5.0.6",
"redux": "^3.7.2",
"reselect": "^3.0.1",
"uuid": "^3.1.0"
},
"devDependencies": {
"gh-pages": "^1.1.0",
"react-scripts": "1.0.17",
"redux-devtools-extension": "^2.13.2"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test --env=jsdom",
"eject": "react-scripts eject",
"predeploy": "npm run build",
"deploy": "gh-pages -d build"
}
}