-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 1 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
{
"name": "try-stripe-connect",
"module": "index.ts",
"type": "module",
"scripts": {
"dev": "bun --watch index.ts",
"db:seed": "bun migrations/scripts/run-seed.ts",
"db:migrate": "bun ./migrations/scripts/migrate.ts",
"db:migrate:undo": "drizzle-kit drop",
"db:migrate:generate": "drizzle-kit generate",
"db:push": "drizzle-kit push:pg"
},
"proxy": "http://localhost:4242",
"devDependencies": {
"@types/bun": "latest",
"drizzle-kit": "^0.23.2"
},
"peerDependencies": {
"typescript": "^5.0.0"
},
"dependencies": {
"@libsql/client": "^0.8.1",
"@types/bcryptjs": "^2.4.6",
"@types/express": "^4.17.21",
"@types/jsonwebtoken": "^9.0.6",
"@types/morgan": "^1.9.9",
"@types/multer": "^1.4.11",
"bcryptjs": "^2.4.3",
"better-sqlite3": "^11.1.2",
"dotenv": "^16.4.5",
"drizzle-orm": "^0.32.2",
"express": "^4.19.2",
"jsonwebtoken": "^9.0.2",
"morgan": "^1.10.0",
"multer": "^1.4.5-lts.1",
"stripe": "^16.6.0"
}
}