-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.37 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
{
"name": "react-boilerplate",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "webpack-dev-server --mode development --open --hot",
"build": "webpack --config webpack.config.js --mode production",
"build:server": "webpack --config webpack-server.config.js --mode production",
"start:server": "nodemon ./dist/server/server.js",
"bundle-report": "webpack-bundle-analyzer dist/stats.json"
},
"author": "Alex_Ka",
"license": "ISC",
"devDependencies": {
"@babel/cli": "^7.6.4",
"@babel/core": "^7.4.3",
"@babel/plugin-transform-runtime": "^7.7.6",
"@babel/preset-env": "^7.4.3",
"@babel/preset-react": "^7.0.0",
"babel-loader": "^8.0.5",
"babel-plugin-styled-components": "^1.10.6",
"css-loader": "^2.1.1",
"file-loader": "^4.2.0",
"html-webpack-plugin": "^3.2.0",
"nodemon": "^2.0.1",
"style-loader": "^0.23.1",
"webpack": "^4.30.0",
"webpack-bundle-analyzer": "^3.3.2",
"webpack-cli": "^3.3.0",
"webpack-dev-server": "^3.3.1"
},
"dependencies": {
"@babel/plugin-proposal-class-properties": "^7.7.4",
"@babel/runtime": "^7.7.6",
"cors": "^2.8.5",
"express": "^4.17.1",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"request": "^2.88.0",
"styled-components": "^4.4.1"
}
}