-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.12 KB
/
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
38
39
40
41
42
43
44
45
46
47
48
{
"name": "auth-api",
"version": "1.0.0",
"description": "",
"main": "app.js",
"scripts": {
"dev": "tsx watch src/app.ts",
"build": "tsc",
"migrate": "drizzle-kit generate:pg",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [
"auth",
"nodejs"
],
"author": "Vatt Sopheak",
"license": "ISC",
"dependencies": {
"argon2": "^0.31.2",
"close-with-grace": "^1.2.0",
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"dayjs": "^1.11.10",
"dotenv": "^16.3.1",
"drizzle-orm": "^0.29.3",
"express": "^4.18.2",
"jsonwebtoken": "^9.0.2",
"lodash": "^4.17.21",
"nanoid": "^5.0.5",
"nodemailer": "^6.9.9",
"pg": "^8.11.3",
"pino": "^8.18.0",
"zod": "^3.22.4"
},
"devDependencies": {
"@types/cookie-parser": "^1.4.6",
"@types/cors": "^2.8.17",
"@types/express": "^4.17.21",
"@types/jsonwebtoken": "^9.0.5",
"@types/node": "^20.5.1",
"@types/nodemailer": "^6.4.14",
"@types/pg": "^8.11.0",
"drizzle-kit": "^0.20.14",
"pino-pretty": "^10.3.1",
"tsx": "^3.12.7",
"typescript": "^5.1.6"
}
}