-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.41 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.41 KB
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
{
"name": "express-docker-template",
"version": "2.3.0",
"private": true,
"scripts": {
"dev": "npx eslint --fix .; npx webpack watch --mode development",
"build": "echo 'Building production pack'; npx eslint .; npx webpack --mode production",
"start": "node ./bin/server.js",
"lint:fix": "npx eslint --fix ."
},
"dependencies": {
"cookie-parser": "^1.4.7",
"debug": "^4.4.0",
"express": "^4.21.2",
"globals": "^16.0.0",
"http-errors": "^2.0.0",
"morgan": "^1.9.1",
"winston": "^3.17.0"
},
"devDependencies": {
"@babel/core": "^7.26.0",
"@babel/eslint-parser": "^7.26.10",
"@babel/preset-env": "^7.26.0",
"@eslint/compat": "^1.2.7",
"@eslint/eslintrc": "^3.3.0",
"@eslint/js": "^9.22.0",
"babel-loader": "^10.0.0",
"eslint": "^9.18.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^10.1.1",
"eslint-plugin-es": "^4.1.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-promise": "^7.2.1",
"eslint-plugin-proposal": "^2.3.3",
"eslint-webpack-plugin": "^5.0.0",
"nodemon": "^3.0.3",
"nodemon-webpack-plugin": "^4.8.2",
"prettier": "^3.3.3",
"terser-webpack-plugin": "^5.3.10",
"webpack": "^5.90.1",
"webpack-cli": "^6.0.1",
"webpack-dev-server": "^5.0.1",
"webpack-node-externals": "^3.0.0"
}
}