-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
executable file
·61 lines (61 loc) · 1.78 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
{
"name": "typescript-webpack-react-flux-boilerplate",
"version": "1.0.0",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/pepaar/typescript-webpack-react-flux-boilerplate.git"
},
"scripts": {
"start": "node server.js",
"build": "webpack --config config/webpack.config.js",
"build:prod": "NODE_ENV=production webpack --config config/webpack.config.js",
"start:prod":"yarn build:prod&&NODE_ENV=production node server.js"
},
"dependencies": {
"@types/moment": "^2.13.0",
"@types/node": "^7.0.12",
"@types/react": "~15.0.21",
"@types/react-dom": "~0.14.23",
"@types/react-router": "3",
"@types/systemjs": "^0.20.2",
"antd": "^2.9.1",
"fetch-jsonp": "^1.0.6",
"lodash": "^4.17.4",
"mobx": "^3.1.9",
"mobx-react": "4.1.3",
"moment": "^2.18.1",
"react": "~15.4.2",
"react-dom": "~15.4.2",
"react-router": "3",
"recharts": "^0.22.0",
"system": "^1.3.0"
},
"devDependencies": {
"awesome-typescript-loader": "~3.1.2",
"babel": "~6.23.0",
"babel-cli": "^6.24.0",
"babel-core": "~6.24.0",
"babel-loader": "~6.4.1",
"babel-plugin-external-helpers": "~6.22.0",
"babel-polyfill": "~6.23.0",
"babel-preset-es2015": "~6.24.0",
"babel-preset-es2015-loose": "~8.0.0",
"clean-webpack-plugin": "^0.1.16",
"css-loader": "~0.28.0",
"express": "^4.15.2",
"file-loader": "~0.11.1",
"html-webpack-plugin": "~2.28.0",
"less": "~2.7.2",
"less-loader": "~4.0.3",
"node-libs-browser": "~2.0.0",
"react-hot-loader": "~1.3.1",
"style-loader": "~0.16.1",
"tslint": "~4.5.1",
"tslint-loader": "~3.4.3",
"typescript": "~2.2.2",
"webpack": "~2.3.3",
"webpack-config": "~7.0.0",
"webpack-dev-server": "~2.4.2"
}
}