-
Notifications
You must be signed in to change notification settings - Fork 20
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.3 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.3 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
{
"name": "backend-code-test",
"private": true,
"version": "1.0.0",
"scripts": {
"build-ts": "tsc",
"build": "npm run build-ts && npm run lint",
"dev": "cross-env NODE_ENV=dev ts-node-dev --ignore-watch node_modules --inspect=0.0.0.0:9267 ./src/api/server.ts",
"lint": "tsc --noEmit && eslint \"**/*.{js,ts}\" --quiet --fix",
"serve-debug": "nodemon --inspect dist/server.js",
"serve": "node dist/server.js",
"start": "npm run serve",
"test": "echo \"No test suite was configured.\" && exit 1",
"watch-node": "nodemon dist/server.js",
"watch-test": "echo \"No test suite was configured.\" && exit 1",
"watch-ts": "tsc -w"
},
"engines": {
"node": "^20.0.0"
},
"dependencies": {
"body-parser": "^1.20.2",
"compression": "^1.7.4",
"express": "^4.19.2",
"lusca": "^1.7.0"
},
"devDependencies": {
"@types/compression": "^1.7.5",
"@types/errorhandler": "^1.5.3",
"@types/eslint": "^9.6.0",
"@types/express": "^4.17.21",
"@types/lusca": "^1.7.5",
"@types/node": "^22.4.1",
"@typescript-eslint/eslint-plugin": "^8.1.0",
"@typescript-eslint/parser": "^8.1.0",
"cross-env": "^7.0.3",
"errorhandler": "^1.5.1",
"eslint": "^9.9.0",
"nodemon": "^3.1.4",
"ts-node-dev": "2.0.0",
"typescript": "^5.5.4"
}
}