-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.36 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.36 KB
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
49
50
51
{
"name": "url-shortener",
"private": true,
"version": "0.0.1",
"description": "Encore URL Shortener Tutorial",
"license": "MPL-2.0",
"type": "module",
"scripts": {
"test": "vitest",
"db:generate": "drizzle-kit generate",
"db:migrate": "drizzle-kit migrate",
"db:push": "drizzle-kit push",
"studio": "drizzle-kit studio",
"generate": "encore gen client --services=newChat --env=\"local\" -o chatClient.ts"
},
"devDependencies": {
"@types/busboy": "^1.5.4",
"@types/formidable": "^3.4.5",
"@types/jsonwebtoken": "^9.0.9",
"@types/node": "^20.5.7",
"@types/node-cron": "^3.0.11",
"@types/nodemailer": "^6.4.17",
"@types/pg": "^8.11.11",
"drizzle-kit": "^0.30.6",
"typescript": "^5.2.2",
"vite": "^7.0.4",
"vitest": "^2.1.4"
},
"dependencies": {
"@sinclair/typebox": "^0.34.33",
"@upstash/redis": "^1.34.7",
"bcrypt-ts": "^6.0.0",
"busboy": "^1.6.0",
"cloudinary": "^2.6.0",
"cookie": "^1.0.2",
"drizzle-orm": "^0.41.0",
"encore.dev": "^1.48.11",
"formidable": "^3.5.2",
"ioredis": "^5.6.0",
"jsonwebtoken": "^9.0.2",
"nanoid": "^5.1.5",
"node-cron": "^3.0.3",
"nodemailer": "^6.10.0",
"pg": "^8.14.1",
"pg-connection-string": "^2.7.0",
"zod": "^3.24.2"
},
"optionalDependencies": {
"@rollup/rollup-linux-x64-gnu": "^4.13.0"
}
}