-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 1.58 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
47
48
49
50
51
52
53
54
55
56
57
{
"name": "react-express-webpack",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"server": "nodemon --exec babel-node server.js",
"webpack": "webpack --mode development -w",
"dev": "webpack --mode development && nodemon --exec babel-node server.js",
"test": "echo \"Error: no test specified\" && exit 1",
"build": "webpack --mode production",
"lint": "eslint **/*.js"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@babel/runtime": "7.2.0",
"express": "^4.17.1",
"react": "^16.12.0",
"react-dom": "^16.12.0",
"style-loader": "^1.1.2"
},
"husky": {
"hooks": {
"pre-commit": "npm run lint"
}
},
"devDependencies": {
"@babel/cli": "^7.0.0",
"@babel/core": "7.2.2",
"@babel/node": "^7.0.0",
"@babel/plugin-proposal-class-properties": "7.2.3",
"@babel/plugin-transform-runtime": "7.2.0",
"@babel/preset-env": "7.2.3",
"@babel/preset-react": "7.0.0",
"babel-loader": "8.0.4",
"eslint": "^6.8.0",
"eslint-config-standard": "^14.1.0",
"eslint-plugin-import": "^2.19.1",
"eslint-plugin-node": "^11.0.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-react": "^7.17.0",
"eslint-plugin-standard": "^4.0.1",
"file-loader": "^5.0.2",
"html-webpack-plugin": "^3.2.0",
"husky": "^4.0.3",
"nodemon": "^2.0.2",
"webpack": "^4.41.5",
"webpack-cli": "^3.3.10",
"webpack-dev-server": "^3.10.1",
"postcss-loader": "^3.0.0",
"sass": "^1.23.7",
"sass-loader": "^8.0.0",
"autoprefixer": "^9.7.3"
}
}