-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.53 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
{
"name": "HRKit",
"version": "1.0.0",
"description": "",
"main": "app.js",
"scripts": {
"dev": "webpack-dev-server",
"start": "npm run pack",
"pack": "rm -rf ./dist/*.js && rm -rf ./dist/*.map && rm -rf ./dist/resource && webpack --progress --profile --display-modules --colors && webpack-dev-server --hot --inline --open",
"dll": "webpack --progress --profile --colors --display-modules --config webpack.dll.config.js",
"build": "webpack --progress --profile --colors --display-modules --config webpack.dll.config.js && webpack --progress --profile --colors --display-modules && webpack-dev-server --hot --inline --open"
},
"author": "Z",
"license": "MIT",
"devDependencies": {
"babel-cli": "*",
"babel-core": "*",
"babel-loader": "*",
"babel-preset-env": "*",
"babel-preset-react": "*",
"babel-preset-stage-0": "*",
"babel-plugin-syntax-async-functions": "*",
"babel-plugin-transform-regenerator": "*",
"babel-polyfill": "*",
"css-loader": "*",
"file-loader": "^1.1.11",
"html-loader": "^0.5.5",
"html-webpack-plugin": "*",
"less": "*",
"less-loader": "*",
"open-browser-webpack-plugin": "*",
"style-loader": "*",
"uglifyjs-webpack-plugin": "^1.2.4",
"url-loader": "^1.0.1",
"webpack": "*",
"webpack-cli": "^2.0.13",
"webpack-dev-server": "*",
"clean-webpack-plugin": "*"
},
"dependencies": {
"react": "*",
"react-addons-css-transition-group": "^15.6.2",
"react-dom": "^16.4.0",
"react-router-dom": "^4.2.2"
}
}