-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 1.1 KB
/
package.json
File metadata and controls
31 lines (31 loc) · 1.1 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
{
"name": "supernova",
"version": "0.0.0",
"scripts": {
"ci": "npm run format && npm run lint && npm run test && npm run build",
"test": "turbo run test",
"build": "turbo run build",
"db:start": "cd apps/api-v2 && npm run db:start",
"db:diff": "cd apps/api-v2 && npm run db:diff",
"db:migrate": "cd apps/api-v2 && npm run db:migrate",
"build:api": "turbo build --scope=api-v2",
"dev": "npm run dev:api & npm run dev:desktop",
"setup:api": "cd apps/api-v2 && npm run setup",
"dev:api": "turbo run dev --scope=api-v2",
"dev:desktop": "turbo run dev --scope=desktop-v2",
"dev:www": "turbo run dev --scope=www",
"lint": "turbo run lint",
"format": "prettier --write \"**/*.{ts,tsx,md}\"",
"prepare": "husky install",
"dockerize:api": "docker build -f apps/api-v2/Dockerfile -t supernova-api-v2:latest .",
"prisma-studio": "cd apps/api-v2 && npx prisma studio"
},
"devDependencies": {
"@turbo/gen": "^1.9.7",
"eslint": "^7.32.0",
"prettier": "^2.5.1",
"turbo": "latest",
"husky": "^8.0.0"
},
"packageManager": "pnpm@7.15.0"
}