-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 1.64 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": "new",
"version": "1.0.0",
"description": "",
"keywords": [],
"main": "src/index.js",
"dependencies": {
"babel-core": "^6.26.0",
"babel-eslint": "^7.2.3",
"babel-loader": "^7.1.2",
"babel-plugin-transform-async-to-generator": "^6.24.1",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-polyfill": "^6.26.0",
"babel-preset-env": "^1.6.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"compression-webpack-plugin": "1.1.12",
"html-webpack-plugin": "3.2.0",
"mini-css-extract-plugin": "0.4.2",
"react": "^16.4.2",
"react-dom": "^16.4.2",
"react-scripts": "1.1.4",
"rimraf": "2.6.2",
"uglifyjs-webpack-plugin": "1.3.0",
"webpack": "4.17.1",
"webpack-cli": "3.1.0",
"webpack-dev-server": "3.1.7",
"webpack-merge": "latest"
},
"devDependencies": {},
"scripts": {
"clean": "rimraf dist/",
"watch": "yarn clean && webpack --watch --progress --profile --colors --config webpack.dev.js",
"start": "NODE_ENV=local webpack-dev-server --progress --profile --colors --open --config webpack.dev.js",
"build:dev": "webpack --progress --profile --colors --config webpack.dev.js && yarn run move:files",
"build:prelive": "yarn clean && NODE_ENV=prelive webpack --profile --colors --config webpack.prod.js && yarn run move:files",
"build:prod": "yarn clean && webpack --profile --colors --config webpack.prod.js && yarn run move:files"
}
}