-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 2.18 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 2.18 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
49
50
51
52
53
54
55
56
57
58
59
60
{
"name": "tz",
"version": "1.0.0",
"description": "",
"main": "webpack.config.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "cross-env RUN_ENV=dev NODE_ENV=development webpack-dev-server --config ./webpack.dev.js",
"build": "cross-env RUN_ENV=build NODE_ENV=production webpack --config ./webpack.build.js --optimize-minimize",
"analyzer-build": "cross-env RUN_ENV=build NODE_ENV=production webpack --profile --json > stats.json --config ./webpack.build.js --optimize-minimize",
"analyzer": "webpack-bundle-analyzer stats.json",
"server": "cross-env RUN_ENV=server NODE_ENV=production node --harmony server/index.js",
"server-dev": "cross-env RUN_ENV=server NODE_ENV=production nodemon --harmony server/index.js"
},
"author": "",
"license": "ISC",
"dependencies": {
"babel-polyfill": "^6.26.0",
"bundle-loader": "^0.5.6",
"fetch-initial-data": "^1.0.0",
"react": "^16.3.2",
"react-dom": "^16.3.2",
"react-loadable": "^5.4.0",
"react-redux": "^5.0.7",
"react-router-dom": "^4.2.2",
"react-router-redux": "^5.0.0-alpha.8",
"redux": "^4.0.0",
"redux-thunk": "^2.2.0"
},
"devDependencies": {
"babel": "^6.23.0",
"babel-core": "^6.26.3",
"babel-loader": "^7.1.4",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-plugin-dynamic-import-node": "^1.2.0",
"babel-plugin-syntax-dynamic-import": "^6.18.0",
"babel-plugin-transform-decorators": "^6.24.1",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-preset-env": "^1.7.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"babel-preset-stage-1": "^6.24.1",
"babel-register": "^6.26.0",
"clean-webpack-plugin": "^0.1.19",
"copy-webpack-plugin": "^4.5.1",
"cross-env": "^5.1.5",
"html-webpack-plugin": "^3.2.0",
"import-inspector": "^2.0.0",
"koa": "^2.5.1",
"koa-router": "^7.4.0",
"koa-static": "^4.0.3",
"offline-plugin": "^5.0.3",
"react-helmet": "^5.2.0",
"redux-devtools-extension": "^2.13.2",
"webpack": "^4.8.3",
"webpack-cli": "^2.1.3",
"webpack-dev-server": "^3.1.4"
}
}