-
Notifications
You must be signed in to change notification settings - Fork 56
/
Copy pathpackage.json
39 lines (39 loc) · 1002 Bytes
/
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
{
"name": "bytedash",
"version": "1.0.0",
"description": "",
"main": "index.js",
"type": "module",
"scripts": {
"dev:api": "tsx --watch src/api/index.ts",
"dev:client": "tsx src/client/index.ts",
"build": "tsc && tsc-alias",
"db:generate": "drizzle-kit generate:pg",
"db:migrate": "cross-env DB_MIGRATING=true tsx src/db/migrate.ts",
"db:seed": "cross-env DB_SEEDING=true tsx src/db/seed.ts"
},
"keywords": [],
"author": "",
"license": "MIT",
"devDependencies": {
"cross-env": "^7.0.3",
"drizzle-kit": "^0.21.2",
"tsc": "^2.0.4",
"tsc-alias": "^1.8.10",
"tsx": "^4.10.5",
"typescript": "^5.4.5"
},
"dependencies": {
"@types/express": "^4.17.21",
"@types/node": "^20.12.12",
"argon2": "^0.40.1",
"dotenv": "^16.4.5",
"dotenv-expand": "^11.0.6",
"drizzle-orm": "^0.30.10",
"drizzle-zod": "^0.5.1",
"express": "^4.19.2",
"pg": "^8.11.5",
"postgres": "^3.4.4",
"typed-rpc": "^5.0.2"
}
}