-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
46 lines (46 loc) · 1.25 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
{
"name": "cnode",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"prebuild": "export NODE_ENV=prod",
"build": "node ./node_modules/webpack/bin/webpack --config webpack.config.js && cp client/index.html dist/index.html",
"test": "echo \"Error: no test specified\" && exit 1",
"start": "npm run build && node server/app.js"
},
"author": "",
"license": "ISC",
"dependencies": {
"axios": "^0.9.1",
"debounce": "^1.0.0",
"iscroll": "^5.1.3",
"koa": "^2.0.0",
"koa-convert": "^1.2.0",
"koa-router": "^7.0.1",
"koa-static": "^2.0.0",
"mini-moment": "0.0.6",
"querystring": "^0.2.0",
"react": "^15.0.0-rc.1",
"react-dom": "^15.0.0-rc.1",
"react-iscroll": "^1.0.0",
"react-redux": "^4.4.1",
"react-router": "^2.0.1",
"redux": "^3.3.1",
"redux-thunk": "^2.0.1"
},
"devDependencies": {
"babel-core": "^6.7.4",
"babel-loader": "^6.2.4",
"babel-preset-es2015": "^6.6.0",
"css-loader": "^0.23.1",
"file-loader": "^0.8.5",
"node-sass": "^3.4.2",
"sass-loader": "^3.2.0",
"style-loader": "^0.13.0",
"ts-loader": "^0.8.1",
"typescript": "^1.9.0-dev.20160322",
"url-loader": "^0.5.7",
"webpack": "^2.1.0-beta.4"
}
}