-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 loc) · 952 Bytes
/
package.json
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
{
"name": "sentrimetric",
"version": "1.0.0",
"main": "./dist/server.js",
"scripts": {
"dev": "tsx watch ./src/server.ts",
"prod": "tsc && node ./dist/server.js",
"sync:db": "prisma db push && prisma generate",
"build": "tsc"
},
"author": "nakshatra raghav <[email protected]>",
"license": "ISC",
"dependencies": {
"@prisma/client": "^4.15.0",
"@upstash/redis": "^1.22.0",
"argon2": "^0.30.3",
"cookie-parser": "^1.4.6",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"helmet": "^7.0.0",
"jsonwebtoken": "^9.0.0",
"nanoid": "3.3.4",
"natural": "^6.5.0",
"pino": "^8.14.1",
"pino-pretty": "^10.0.0",
"zod": "^3.21.4"
},
"devDependencies": {
"@types/cookie-parser": "^1.4.3",
"@types/express": "^4.17.17",
"@types/jsonwebtoken": "^9.0.2",
"@types/node": "^20.3.1",
"prisma": "^4.15.0",
"tsx": "^3.12.7",
"typescript": "^5.1.3"
}
}