forked from nkiateam/react-tutorial
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.09 KB
/
Copy pathpackage.json
File metadata and controls
42 lines (42 loc) · 1.09 KB
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
{
"name": "react-tutorial",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"webpack": "webpack",
"http-server": "http-server ./ -p 3000 -o /index.html",
"start": "concurrent \"npm run webpack\" \"npm run http-server\" "
},
"author": "NKIA",
"license": "ISC",
"devDependencies": {
"babel-core": "^6.5.2",
"babel-loader": "^6.2.2",
"babel-polyfill": "^6.16.0",
"babel-preset-es2015": "^6.5.0",
"babel-preset-react": "^6.5.0",
"classnames": "^2.2.3",
"concurrently": "^2.0.0",
"del": "^2.2.1",
"gulp": "^3.9.1",
"gulp-webpack": "^1.5.0",
"http-server": "^0.9.0",
"keymirror": "^0.1.1",
"marked": "^0.3.6",
"object-assign": "^4.0.1",
"react-addons-update": "^15.3.2",
"webpack": "^1.13.1"
},
"dependencies": {
"classnames": "^2.2.5",
"flux": "^2.1.1",
"react": "^15.4.0",
"react-addons-update": "^15.4.0",
"react-dom": "^15.4.0",
"react-redux": "^4.4.6",
"react-router": "^2.8.1",
"redux": "^3.6.0"
}
}