-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 828 Bytes
/
Copy pathpackage.json
File metadata and controls
31 lines (31 loc) · 828 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
{
"name": "flowspace",
"version": "0.1.0",
"private": true,
"description": "Unified project management platform — open source core + cloud SaaS",
"license": "MIT",
"engines": {
"node": ">=22.0.0",
"pnpm": ">=10.0.0"
},
"packageManager": "pnpm@10.28.2",
"scripts": {
"dev": "nx run-many -t dev",
"build": "nx run-many -t build",
"lint": "nx run-many -t lint",
"type-check": "nx run-many -t type-check",
"test": "nx run-many -t test",
"clean": "nx reset && rm -rf node_modules",
"format": "prettier --write .",
"format:check": "prettier --check ."
},
"devDependencies": {
"nx": "^21.0.0",
"typescript": "^5.7.0",
"prettier": "^3.4.0",
"@eslint/js": "^9.16.0",
"typescript-eslint": "^8.18.0",
"eslint": "^9.16.0",
"vitest": "^3.0.0"
}
}