-
-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 976 Bytes
/
package.json
File metadata and controls
38 lines (38 loc) · 976 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
35
36
37
38
{
"name": "vitnode",
"private": true,
"scripts": {
"release": "tsx ./scripts/bump-version/bump-version.ts",
"db:migrate": "turbo db:migrate",
"docker:dev": "turbo docker:dev",
"build:scripts": "turbo build:scripts && pnpm i",
"build:plugins": "turbo build:plugins",
"build": "turbo build",
"start": "turbo start",
"init": "turbo init",
"dev": "pnpm build:scripts && turbo build:plugins && turbo dev",
"lint": "turbo lint",
"lint:fix": "turbo lint:fix",
"test": "turbo test",
"test:e2e": "turbo test:e2e"
},
"devDependencies": {
"@types/node": "^24.10.1",
"@vitnode/config": "workspace:*",
"prettier": "^3.6.2",
"prettier-plugin-tailwindcss": "^0.7.1",
"tsx": "^4.20.6",
"turbo": "^2.6.1",
"typescript": "^5.9.3",
"zod": "^4.1.12"
},
"engines": {
"node": ">=22"
},
"packageManager": "pnpm@10.18.3",
"workspaces": [
"apps/*",
"packages/*",
"plugins/*"
]
}