-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.08 KB
/
package.json
File metadata and controls
39 lines (39 loc) · 1.08 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
{
"name": "producthub",
"private": true,
"workspaces": [
"apps/*",
"packages/*"
],
"scripts": {
"dev:web": "npm run dev -w apps/web",
"host:web": "npm run host -w apps/web",
"lint:web": "npm run lint -w apps/web",
"format:web": "npm run format -w apps/web",
"dev:api": "npm run dev -w apps/api",
"host:api": "npm run dev -w apps/api",
"lint:api": "npm run lint -w apps/api",
"format:api": "npm run format -w apps/api",
"dev": "run-p -rln dev:* db:studio",
"host": "run-p -rln host:* db:studio",
"db:push": "npm run db:push -w apps/api",
"db:studio": "npm run db:studio -w apps/api",
"db:generate": "npm run db:generate -w apps/api",
"db:migrate": "npm run db:migrate -w apps/api",
"lint": "run-p -rln lint:*",
"format": "npm run format --ws"
},
"dependencies": {
"@trpc/server": "^10.44.1",
"typescript": "^5.3.2",
"zod": "^3.22.4"
},
"devDependencies": {
"dotenv": "^16.3.1",
"dotenv-cli": "^7.3.0",
"npm-run-all": "^4.1.5",
"prettier": "^3.1.0",
"tsx": "^4.5.0"
},
"swpm": "npm"
}