-
-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
33 lines (33 loc) · 821 Bytes
/
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
{
"name": "shelve",
"private": true,
"type": "module",
"scripts": {
"build": "turbo build",
"build:app": "turbo run build --filter=@shelve/app",
"build:cli": "turbo run build --filter=@shelve/cli",
"dev": "turbo dev --filter=@shelve/app",
"dev:app": "turbo dev --filter=@shelve/app",
"dev:cli": "turbo dev --filter=@shelve/cli",
"generate": "turbo run generate",
"lint": "turbo lint",
"lint:fix": "turbo lint:fix",
"test": "turbo test",
"typecheck": "turbo typecheck"
},
"devDependencies": {
"@hrcd/eslint-config": "^2.0.4",
"automd": "^0.3.8",
"eslint": "^9.10.0",
"turbo": "^2.1.2",
"typescript": "5.6.2"
},
"engines": {
"node": ">=20.17.0"
},
"packageManager": "[email protected]",
"workspaces": [
"apps/*",
"packages/*"
]
}