-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 1013 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 1013 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
{
"name": "tensorify",
"private": true,
"scripts": {
"build": "turbo build",
"dev": "turbo dev",
"lint": "turbo lint",
"format": "prettier --write \"**/*.{ts,tsx,md}\"",
"db:start": "docker compose up -d postgres",
"db:stop": "docker compose down",
"version:patch": "sh scripts/version-management.sh patch",
"version:minor": "sh scripts/version-management.sh minor",
"version:major": "sh scripts/version-management.sh major",
"publish:all": "sh scripts/version-management.sh publish",
"seed:test-plugins": "node seed-test-plugins-simple.js",
"offline:reset": "bash scripts/offline-dev-reset.sh",
"offline:build": "bash scripts/offline-dev-build.sh",
"every": "./rebuild.sh"
},
"devDependencies": {
"@repo/eslint-config": "workspace:*",
"prettier": "^3.3.3",
"turbo": "^2.0.9",
"zod": "^3.25.0"
},
"packageManager": "pnpm@9.6.0",
"workspaces": [
"apps/*",
"packages/*",
"packages/config/*",
"services/*"
]
}