-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
27 lines (27 loc) · 777 Bytes
/
package.json
File metadata and controls
27 lines (27 loc) · 777 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
{
"name": "intendedops",
"version": "0.1.0",
"private": true,
"description": "IntendedOps — Governed Back-Office Operating System for SaaS",
"scripts": {
"build": "turbo run build",
"dev": "turbo run dev",
"dev:api": "cd services/api && node dist/cli.js",
"dev:console": "cd apps/console && pnpm dev",
"dev:web": "cd apps/web && pnpm dev",
"start": "pnpm build && pnpm dev:api & pnpm dev:console",
"test": "turbo run test",
"typecheck": "turbo run typecheck",
"lint": "turbo run lint",
"clean": "turbo run clean && rm -rf node_modules"
},
"devDependencies": {
"turbo": "^2.0.0",
"typescript": "^5.3.0"
},
"packageManager": "pnpm@9.15.9",
"engines": {
"node": ">=20.0.0"
},
"license": "Apache-2.0"
}