-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 875 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 875 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
{
"name": "auth-services",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "node dist/index",
"build": "tsc -p .",
"dev": "tsc-watch --onSuccess \"node dist/index\"",
"studio": "drizzle-kit studio",
"db:generate": "drizzle-kit generate",
"db:migrate": "drizzle-kit migrate"
},
"keywords": [],
"author": "",
"license": "ISC",
"packageManager": "pnpm@10.33.0",
"dependencies": {
"dotenv": "^17.4.2",
"drizzle-orm": "^0.45.2",
"express": "^5.2.1",
"jsonwebtoken": "^9.0.3",
"pg": "^8.20.0",
"tsc-watch": "^7.2.0",
"zod": "^4.3.6"
},
"devDependencies": {
"@types/express": "^5.0.6",
"@types/jsonwebtoken": "^9.0.10",
"@types/node": "^25.6.0",
"@types/pg": "^8.20.0",
"drizzle-kit": "^0.31.10",
"tsx": "^4.21.0",
"typescript": "^6.0.3"
}
}