-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 1.17 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
{
"name": "express-docker-template",
"version": "2.3.0",
"private": true,
"scripts": {
"dev": "npx eslint --fix --ext 'js,cjs,mjs' .; npx webpack watch --mode development",
"build": "echo 'Building production pack'; npx eslint --fix --ext 'js' .; npx webpack --mode production",
"start": "node ./bin/server.js",
"lint:fix": "npx eslint --fix --ext 'js,cjs,mjs' ."
},
"dependencies": {
"cookie-parser": "^1.4.4",
"debug": "^2.6.9",
"express": "^4.16.1",
"http-errors": "^2.0.0",
"morgan": "^1.9.1",
"winston": "^3.11.0"
},
"devDependencies": {
"@babel/core": "^7.23.9",
"@babel/eslint-parser": "^7.23.10",
"@babel/preset-env": "^7.23.9",
"babel-loader": "^9.1.3",
"eslint": "^8.56.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.0.0",
"eslint-plugin-proposal": "^2.3.3",
"eslint-webpack-plugin": "^4.0.1",
"nodemon": "^3.0.3",
"nodemon-webpack-plugin": "^4.8.2",
"terser-webpack-plugin": "^5.3.10",
"webpack": "^5.90.1",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^5.0.1"
}
}