forked from HighlanderRobotics/lovat-server
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 902 Bytes
/
package.json
File metadata and controls
39 lines (39 loc) · 902 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
36
37
38
39
{
"name": "lovat-server",
"version": "0.1.0",
"prisma": {
"seed": "node dist/seed.js"
},
"description": "",
"scripts": {
"dev": "ts-node-dev --respawn src/index.ts",
"build": "tsc",
"start": "node dist/index.js"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@prisma/client": "^5.6.0",
"@types/jsonwebtoken": "^9.0.5",
"axios": "^1.6.2",
"crypto-js": "^4.2.0",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"express-rate-limit": "^7.1.5",
"flatted": "^3.3.1",
"jose": "^5.1.1",
"resend": "^2.0.0",
"simple-statistics": "^7.8.3",
"zod": "^3.22.4",
"zod-validation-error": "^2.1.0"
},
"devDependencies": {
"@types/crypto-js": "^4.2.1",
"@types/express": "^4.17.21",
"@types/node": "^20.9.2",
"prisma": "^5.6.0",
"ts-node-dev": "^2.0.0",
"typescript": "^5.2.2"
}
}