-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1.02 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
{
"name": "react-ts-boilerplate",
"version": "1.0.0",
"license": "MIT",
"scripts": {
"start": "node ./dist/bin/start.js",
"server:start": "nodemon ./dist/bin/start.js",
"front:start": "webpack --watch",
"server:build": "tsc",
"front:build": "webpack -p"
},
"dependencies": {
"@t2ee/vader": "^0.1.8",
"co": "^4.6.0",
"koa": "next",
"koa-ejs": "^3.0.0",
"koa-router": "next",
"koa-static": "^2.1.0"
},
"devDependencies": {
"@types/es6-promise": "^0.0.32",
"@types/koa": "^2.0.38",
"@types/koa-static": "^2.0.22",
"@types/node": "^7.0.5",
"@types/react": "^15.0.12",
"@types/react-dom": "^0.14.23",
"@types/react-redux": "^4.4.36",
"@types/react-router": "^3.0.5",
"awesome-typescript-loader": "^3.0.7",
"immutable": "^3.8.1",
"react": "^15.4.2",
"react-dom": "^15.4.2",
"react-redux": "^5.0.3",
"react-router": "^3.0.2",
"redux": "^3.6.0",
"source-map-loader": "^0.1.6",
"typescript": "^2.2.1",
"webpack": "next"
}
}