-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 933 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 933 Bytes
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
{
"name": "saas",
"private": true,
"scripts": {
"build": "turbo run build",
"check-types": "turbo run check-types",
"db": "pnpm --filter @repo/db",
"db:m": "pnpm db migrate dev --name",
"db:g": "pnpm db build:prisma",
"dev": "turbo run dev",
"docker": "pnpm --filter @repo/docker dev",
"format": "prettier --write .",
"lint": "turbo run lint",
"test": "turbo run test",
"test:w": "turbo run test:watch",
"infra": "pnpm --filter @infra/aws",
"infra:up": "pnpm run infra make",
"infra:down": "pnpm run infra down"
},
"devDependencies": {
"@next/eslint-plugin-next": "^15.3.1",
"eslint": "^9.26.0",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^5.2.0",
"prettier": "^3.5.3",
"turbo": "^2.5.2",
"typescript": "^5.8.3"
},
"engines": {
"node": ">=14.0.0",
"npm": ">=7.0.0"
},
"packageManager": "pnpm@10.6.2"
}