-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 835 Bytes
/
Copy pathpackage.json
File metadata and controls
35 lines (35 loc) · 835 Bytes
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
{
"name": "classbaord-backend",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"dev": "tsx watch src/server.ts",
"build": "tsc -p tsconfig.json",
"start": "node dist/server.js",
"seed": "tsx scripts/seed.ts"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@faker-js/faker": "^9.9.0",
"@fastify/cors": "^11.1.0",
"@fastify/helmet": "^13.0.1",
"@fastify/rate-limit": "^10.3.0",
"bcrypt": "^6.0.0",
"date-fns": "^4.1.0",
"dotenv": "^17.2.1",
"fastify": "^5.4.0",
"jsonwebtoken": "^9.0.2",
"mongoose": "^8.17.1",
"zod": "^4.0.17"
},
"devDependencies": {
"@types/bcrypt": "^6.0.0",
"@types/jsonwebtoken": "^9.0.10",
"@types/node": "^24.2.1",
"tsx": "^4.20.3",
"typescript": "^5.9.2"
}
}