This repository was archived by the owner on Sep 9, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 34
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.32 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.32 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
43
44
45
46
47
48
{
"name": "starter-node-react",
"version": "1.1.0",
"description": "a starter project structure for react-app",
"main": "src/server/index.js",
"scripts": {
"start": "babel-node src/server/index.js",
"build": "webpack --config config/webpack.config.js",
"dev": "webpack-dev-server --config config/webpack.config.js --devtool eval --progress --colors --hot --content-base dist/"
},
"repository": {
"type": "git",
"url": "git+https://github.com/wwsun/starter-node-react.git"
},
"author": "Weiwei SUN",
"license": "MIT",
"bugs": {
"url": "https://github.com/wwsun/starter-node-react/issues"
},
"homepage": "https://github.com/wwsun/starter-node-react#readme",
"dependencies": {
"babel-cli": "^6.4.5",
"babel-preset-es2015-node5": "^1.1.2",
"co-views": "^2.1.0",
"history": "^2.0.0-rc2",
"koa": "^1.0.0",
"koa-logger": "^1.3.0",
"koa-route": "^2.4.2",
"koa-static": "^2.0.0",
"react": "^0.14.0",
"react-dom": "^0.14.0",
"react-router": "^2.0.0-rc5",
"swig": "^1.4.2"
},
"devDependencies": {
"babel-core": "^6.1.2",
"babel-loader": "^6.0.1",
"babel-preset-es2015": "^6.3.13",
"babel-preset-react": "^6.1.2",
"webpack": "^1.12.2",
"webpack-dev-server": "^1.14.1"
},
"babel": {
"presets": [
"es2015-node5"
]
}
}