-
Notifications
You must be signed in to change notification settings - Fork 22
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.01 KB
/
package.json
File metadata and controls
39 lines (39 loc) · 1.01 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": "gitwit",
"private": true,
"packageManager": "[email protected]",
"workspaces": [
"packages/*",
"web",
"server",
"db",
"lib",
"templates",
"ai",
"tests"
],
"scripts": {
"build": "turbo build",
"build:web": "turbo build --filter=@gitwit/web",
"dev": "turbo dev",
"lint": "turbo lint",
"test": "turbo test",
"test:e2e": "turbo test:e2e",
"db:migrate": "npm run migrate -w db",
"db:migrate:prod": "NODE_ENV=production npm run migrate -w db",
"db:generate": "npm run generate -w db",
"db:generate:prod": "NODE_ENV=production npm run generate -w db",
"db:studio": "npm run studio -w db",
"db:studio:prod": "NODE_ENV=production npm run studio -w db",
"start": "npm start -w web & npm start -w server",
"start:web": "npm start -w web",
"start:server": "npm start -w server",
"templates:deploy": "npm run deploy -w templates"
},
"devDependencies": {
"turbo": "^2.8.9"
},
"dependencies": {
"zod": "^4.3.6"
}
}