-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1.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
39
40
{
"name": "ts-project-explorer",
"module": "index.ts",
"type": "module",
"scripts": {
"run:parse": "bun scripts/local-parse.ts",
"run:parse:index": "bun scripts/local-parse-and-index.ts",
"run:clear": "bun scripts/clear-project-data.ts",
"run:delete": "bun scripts/delete-project.ts",
"serve": "bun server/index.ts",
"serve:watch": "bun --watch server/index.ts",
"client:dev": "cd client && bun run dev",
"db:generate": "bunx drizzle-kit generate",
"db:migrate": "bunx drizzle-kit migrate",
"db:push": "bunx drizzle-kit push",
"db:studio": "bunx drizzle-kit studio"
},
"devDependencies": {
"@types/bun": "latest",
"@types/chalk": "^2.2.4",
"@types/cors": "^2.8.17",
"@types/express": "^5.0.1",
"@types/morgan": "^1.9.9"
},
"peerDependencies": {
"typescript": "^5.0.0"
},
"dependencies": {
"chalk": "^5.4.1",
"cors": "^2.8.5",
"dotenv": "^16.4.7",
"drizzle-orm": "^0.41.0",
"express": "^4.21.2",
"morgan": "^1.10.0",
"octokit": "^4.1.2",
"pg": "^8.14.1",
"shiki": "^3.2.1",
"tsx": "^4.19.3"
}
}