-
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.35 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.35 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": "@dali/db",
"version": "1.0.0",
"description": "Shared PostgreSQL database with Prisma for all DALI services",
"main": "lib/db-connection.ts",
"type": "module",
"scripts": {
"db:generate": "prisma generate",
"db:push": "prisma db push",
"db:migrate": "prisma migrate dev",
"db:migrate:deploy": "prisma migrate deploy",
"db:studio": "prisma studio",
"db:seed": "tsx prisma/seed.ts",
"db:sync": "tsx prisma/sync-from-notion.ts",
"bids:sync": "tsx prisma/sync-bids-from-notion.ts",
"db:reset": "prisma migrate reset",
"dev": "tsx watch src/index.ts",
"start": "tsx src/index.ts"
},
"keywords": [
"database",
"postgresql",
"prisma",
"dali"
],
"author": "",
"license": "MIT",
"dependencies": {
"@notionhq/client": "^4.0.1",
"@prisma/adapter-pg": "^5.9.1",
"@prisma/client": "^5.9.1",
"cookie-parser": "^1.4.7",
"cors": "^2.8.6",
"express": "^5.2.1",
"google-auth-library": "^10.6.1",
"jsonwebtoken": "^9.0.3",
"pg": "^8.11.3",
"zod": "^4.3.6"
},
"devDependencies": {
"@types/cookie-parser": "^1.4.10",
"@types/cors": "^2.8.19",
"@types/express": "^5.0.6",
"@types/jsonwebtoken": "^9.0.10",
"@types/node": "^20.11.24",
"@types/pg": "^8.10.9",
"prisma": "^5.9.1",
"tsx": "^4.21.0",
"typescript": "^5.9.3"
}
}