-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
34 lines (34 loc) · 993 Bytes
/
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
{
"name": "client",
"version": "0.0.1",
"description": "...",
"main": "index.js",
"author": "...",
"private": true,
"license": "ISC",
"scripts": {
"start": "webpack-dev-server --open --config ./config/webpack.config.js",
"build": "cross-env NODE_ENV=development ./node_modules/.bin/webpack --config ./config/webpack.config.js"
},
"dependencies": {},
"devDependencies": {
"@babel/cli": "^7.4.3",
"@babel/core": "^7.4.3",
"@babel/plugin-transform-runtime": "^7.6.2",
"@babel/preset-env": "^7.4.3",
"@babel/preset-react": "^7.0.0",
"@babel/runtime": "^7.4.4",
"babel-loader": "^8.0.5",
"clean-webpack-plugin": "^0.1.19",
"compression-webpack-plugin": "^2.0.0",
"cross-env": "^5.2.0",
"css-loader": "^1.0.1",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"source-map-loader": "^0.2.4",
"style-loader": "^0.23.1",
"webpack": "^4.25.1",
"webpack-cli": "^3.3.9",
"webpack-dev-server": "^3.3.1"
}
}