-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
81 lines (81 loc) · 2.92 KB
/
package.json
File metadata and controls
81 lines (81 loc) · 2.92 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
{
"name": "reacttest",
"version": "0.1.0",
"private": true,
"dependencies": {
"@babel/plugin-transform-runtime": "^7.3.4",
"babel-polyfill": "^6.26.0",
"expose-loader": "^0.7.5",
"jquery": "^3.3.1",
"react": "^16.4.2",
"react-dom": "^16.4.2",
"react-redux": "^5.0.7",
"react-router": "^3.0.0",
"react-scripts": "1.1.4",
"redux": "^4.0.0"
},
"scripts": {
"start": "export NODE_ENV=dev && webpack-dev-server --config build/webpack.dev.js",
"watch": "webpack --watch",
"dll": "webpack --config build/webpack.dll.config.js --progress --colors ",
"entrs": "webpack --config build/webpack.entrys.js --progress --colors ",
"dev": "export NODE_ENV=dev && webpack --config build/webpack.dev.js --progress --colors ",
"build": "export NODE_ENV=dev && webpack --config build/webpack.prod.js ",
"build:dev": "export NODE_ENV=dev && webpack --config build/webpack.prod.js && ./deploy/sit.js",
"build:uat": "export NODE_ENV=uat && webpack --config build/webpack.prod.js && node ./deploy/toOss.js && ./deploy/uat.js",
"build:prod": "export NODE_ENV=prod && webpack --config build/webpack.prod.js && node ./deploy/toOss.js && ./deploy/prod.sh"
},
"devDependencies": {
"@babel/core": "^7.0.0-beta.44",
"@babel/plugin-proposal-class-properties": "^7.0.0-beta.44",
"@babel/plugin-syntax-dynamic-import": "^7.0.0-beta.47",
"@babel/plugin-transform-flow-strip-types": "^7.0.0-beta.45",
"@babel/preset-env": "^7.4.4",
"@babel/preset-flow": "^7.0.0-beta.44",
"@babel/preset-react": "^7.0.0-beta.44",
"@types/jquery": "^3.3.6",
"@types/react": "^16.4.13",
"@types/react-dom": "^16.0.7",
"@types/react-router": "^3.0.0",
"ali-oss": "^5.2.0",
"autoprefixer": "^9.1.0",
"babel-cli": "^6.26.0",
"babel-loader": "^8.0.0-beta.2",
"babel-plugin-dynamic-import-node": "^1.2.0",
"babel-runtime": "^6.26.0",
"chalk": "^2.4.1",
"classnames": "^2.2.6",
"clean-webpack-plugin": "^0.1.17",
"css-loader": "^0.28.11",
"extract-text-webpack-plugin": "^4.0.0-beta.0",
"file-loader": "^1.1.11",
"happypack": "^5.0.0",
"html-webpack-plugin": "^3.2.0",
"html-webpack-pug-plugin": "^0.3.0",
"less": "^3.0.1",
"less-loader": "^4.1.0",
"loader-utils": "^1.2.3",
"node-sass": "^4.9.2",
"ora": "^3.0.0",
"postcss-cssnext": "^3.1.0",
"postcss-import": "^11.1.0",
"postcss-loader": "^2.1.1",
"prop-types": "^15.6.2",
"pug-loader": "^2.4.0",
"react-hot-loader": "^4.0.0",
"resolve-url": "^0.2.1",
"resolve-url-loader": "^2.3.0",
"sass-loader": "^7.0.3",
"scss-loader": "^0.0.1",
"shelljs": "^0.8.2",
"source-map-loader": "^0.2.4",
"style-loader": "^0.20.3",
"ts-loader": "^4.5.0",
"typescript": "^3.0.3",
"url-loader": "^1.0.1",
"webpack": "^4.15.0",
"webpack-cli": "^3.0.8",
"webpack-dev-server": "^3.1.4",
"webpack-merge": "^4.1.3"
}
}