-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
35 lines (35 loc) · 1.08 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
{
"name": "example",
"version": "1.0.0",
"main": "index.js",
"author": "Eric Green <[email protected]>",
"license": "MIT",
"scripts": {
"develop": "yarn run clean && ./node_modules/.bin/webpack -d --watch --config webpack.development.js",
"build": "yarn run clean && ./node_modules/.bin/webpack -p --progress --config webpack.production.js",
"clean": "rm -rf ./build/*"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-loader": "^7.1.4",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-env": "^1.6.1",
"babel-preset-react": "^6.24.1",
"css-loader": "^0.28.10",
"mini-css-extract-plugin": "^0.2.0",
"node-sass": "^4.7.2",
"sass-loader": "^6.0.7",
"style-loader": "^0.20.3",
"uglifyjs-webpack-plugin": "^1.2.4",
"webpack": "^4.1.1",
"webpack-cli": "^2.0.11",
"webpack-merge": "^4.1.2"
},
"dependencies": {
"classnames": "^2.2.5",
"prop-types": "^15.6.1",
"react": "^16.2.0"
}
}