-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
33 lines (33 loc) · 868 Bytes
/
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
{
"name": "react-ssr-tutorial2",
"version": "1.0.0",
"main": "index.js",
"repository": "https://github.com/abczhijia/react-ssr-tutorial2",
"author": "abczhijia <abczhijia@gmail.com>",
"license": "MIT",
"scripts": {
"dev": "webpack -w & nodemon ./build/server.js"
},
"devDependencies": {
"babel-core": "^6.26.0",
"babel-loader": "^7.1.4",
"babel-preset-env": "^1.6.1",
"babel-preset-react": "^6.24.1",
"nodemon": "^1.17.2",
"webpack": "^3",
"webpack-node-externals": "^1.6.0"
},
"dependencies": {
"babel-polyfill": "^6.26.0",
"isomorphic-fetch": "^2.2.1",
"koa": "^2.5.0",
"koa-router": "^7.4.0",
"koa-static": "^4.0.2",
"lodash": "^4.17.5",
"qs": "^6.5.1",
"react": "^16.2.0",
"react-dom": "^16.2.0",
"react-router-dom": "^4.2.2",
"serialize-javascript": "^1.4.0"
}
}