-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.31 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.31 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
40
41
42
43
44
{
"name": "next-wiki",
"private": true,
"type": "module",
"scripts": {
"build": "turbo run build",
"dev": "turbo run dev",
"dev:web": "turbo watch dev --filter=web",
"dev:backend": "turbo watch dev --filter=backend",
"start": "turbo run start",
"start:web": "turbo run start --filter=web",
"lint": "turbo run lint",
"format": "prettier --write \"**/*.{js,jsx,ts,tsx,json,md,css}\"",
"check-types": "turbo run check-types",
"test": "turbo run test",
"test:watch": "turbo run test:watch",
"test:cov": "turbo run test:cov",
"test:debug": "turbo run test:debug",
"test:e2e": "turbo run test:e2e",
"gen:package": "turbo gen package",
"db:seed": "turbo run db:seed",
"db:setup": "turbo run db:setup",
"db:create": "SKIP_DEVELOPER_SEEDS=true turbo run db:setup",
"db:studio": "pnpm run -F @repo/db db:studio",
"clean": "turbo run clean",
"fullclean": "turbo run fullclean && rm -rf node_modules .turbo && rm -f pnpm-lock.yaml"
},
"devDependencies": {
"@turbo/gen": "^2.5.0",
"prettier": "^3.5.3",
"prettier-plugin-tailwindcss": "^0.6.11",
"turbo": "^2.5.0",
"typescript": "5.8.2"
},
"packageManager": "pnpm@10.9.0",
"engines": {
"node": ">=18"
},
"pnpm": {
"overrides": {
"@types/pg": "^8.11.14"
}
}
}