-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
39 lines (39 loc) · 1.14 KB
/
package.json
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": "shelve",
"private": true,
"type": "module",
"repository": "https://github.com/HugoRCD/shelve",
"scripts": {
"build": "turbo run build",
"build:app": "turbo run build --filter=@shelve/app",
"build:lp": "turbo run build --filter=@shelve/lp",
"build:cli": "turbo run build --filter=@shelve/cli",
"dev": "turbo run dev --filter=@shelve/app",
"dev:app": "turbo run dev --filter=@shelve/app",
"dev:lp": "turbo run dev --filter=@shelve/lp",
"dev:cli": "turbo run dev --filter=@shelve/cli",
"dev:prepare": "turbo run dev:prepare",
"prisma:generate": "turbo run prisma:generate",
"generate": "turbo run generate",
"lint": "turbo run lint",
"lint:fix": "turbo run lint:fix",
"test": "turbo run test",
"typecheck": "turbo run typecheck"
},
"devDependencies": {
"@hrcd/eslint-config": "edge",
"automd": "^0.3.12",
"eslint": "^9.14.0",
"turbo": "^2.2.3",
"typescript": "^5.6.3"
},
"engines": {
"node": ">=22.11.0"
},
"packageManager": "[email protected]",
"trustedDependencies": ["@shelve/app", "@shelve/lp"],
"workspaces": [
"apps/*",
"packages/*"
]
}