-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1.11 KB
/
package.json
File metadata and controls
38 lines (38 loc) · 1.11 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
{
"scripts": {
"build": "webpack --mode production",
"start": "node dist/bundle.js",
"watch": "webpack --mode production --watch",
"serve": "webpack --watch --mode production & nodemon dist/bundle.js",
"lint": "eslint src/**/*",
"prettier:fix": "prettier --write src README.md"
},
"dependencies": {
"body-parser": "^1.20.2",
"copy-webpack-plugin": "^12.0.2",
"express": "^4.18.2",
"helmet": "^7.1.0",
"undici": "^6.8.0"
},
"devDependencies": {
"@eslint/eslintrc": "^3.0.2",
"@eslint/js": "^9.0.0",
"@types/express": "^4.17.21",
"@types/node": "^20.11.20",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"eslint": "^8.57.0",
"eslint-config-standard-with-typescript": "^43.0.1",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-n": "^16.6.2",
"eslint-plugin-promise": "^6.1.1",
"globals": "^15.0.0",
"nodemon": "^3.1.9",
"prettier": "3.2.5",
"ts-loader": "^9.5.1",
"typescript": "^5.4.5",
"typescript-eslint": "^7.7.0",
"webpack": "^5.90.3",
"webpack-cli": "^5.1.4",
"webpack-node-externals": "^3.0.0"
}
}