-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.19 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.19 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
48
49
50
{
"name": "node-backend-template",
"version": "1.0.0",
"description": "Template for building a Node.js backend",
"scripts": {
"build": "tsc -p tsconfig.production.json",
"dev": "nodemon",
"prod": "NODE_ENV=production node ./dist/src/index.js",
"test": "npm-run-all test:*",
"test:eslint": "eslint src",
"test:prettier": "prettier . --check",
"test:jest": "jest"
},
"keywords": [
"node.js",
"template",
"backend",
"server",
"api"
],
"author": "Jussi Laakkonen",
"license": "MIT",
"engines": {
"node": "20"
},
"devDependencies": {
"@types/compression": "^1.7.5",
"@types/express": "^4.17.21",
"@types/jest": "^29.5.12",
"@types/supertest": "^6.0.2",
"@typescript-eslint/eslint-plugin": "^7.1.1",
"@typescript-eslint/parser": "^7.1.1",
"eslint": "^8.57.0",
"jest": "^29.7.0",
"nodemon": "^3.1.0",
"npm-run-all": "^4.1.5",
"prettier": "^3.2.5",
"supertest": "^6.3.4",
"ts-jest": "^29.1.2",
"ts-node": "^10.9.2",
"typescript": "^5.3.3"
},
"dependencies": {
"compression": "^1.7.4",
"dotenv": "^16.4.5",
"express": "^4.18.3",
"helmet": "^7.1.0",
"zod": "^3.22.4"
}
}