-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.08 KB
/
Copy pathpackage.json
File metadata and controls
44 lines (44 loc) · 1.08 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
{
"name": "server-boilerplate-ts",
"version": "1.0.0",
"main": "server.ts",
"scripts": {
"test": "jest",
"build": "tsc",
"start": "node dist/server.js",
"start:dev": "ts-node-dev --respawn --transpile-only src/server.ts"
},
"keywords": [],
"author": "",
"license": "ISC",
"description": "",
"dependencies": {
"bcryptjs": "^3.0.2",
"compression": "^1.8.0",
"cors": "^2.8.5",
"dotenv": "^16.5.0",
"express": "^5.1.0",
"helmet": "^8.1.0",
"jsonwebtoken": "^9.0.2",
"mysql2": "^3.14.1",
"reflect-metadata": "^0.2.2",
"sequelize": "^6.37.7",
"typedi": "^0.10.0",
"zod": "^3.25.67"
},
"devDependencies": {
"@faker-js/faker": "^9.8.0",
"@jest/globals": "^30.0.0",
"@types/bcryptjs": "^2.4.6",
"@types/compression": "^1.8.1",
"@types/cors": "^2.8.19",
"@types/express": "^5.0.3",
"@types/jsonwebtoken": "^9.0.9",
"@types/sequelize": "^4.28.20",
"@types/supertest": "^6.0.3",
"supertest": "^7.1.1",
"ts-jest": "^29.3.4",
"ts-node-dev": "^2.0.0",
"typescript": "^5.8.3"
}
}