forked from makeplane/plane
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) 路 1.4 KB
/
Copy pathpackage.json
File metadata and controls
43 lines (43 loc) 路 1.4 KB
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
39
40
41
42
43
{
"name": "plane",
"version": "1.4.1",
"private": true,
"description": "Open-source project management that unlocks customer value",
"license": "AGPL-3.0",
"repository": "https://github.com/makeplane/plane.git",
"scripts": {
"build": "turbo run build",
"dev": "turbo run dev --concurrency=18",
"start": "turbo run start",
"clean": "turbo run clean && rm -rf .turbo && rm -rf .next && rm -rf node_modules && rm -rf dist",
"fix": "turbo run fix",
"fix:format": "turbo run fix:format",
"fix:lint": "turbo run fix:lint",
"check": "turbo run check",
"check:lint": "turbo run check:lint",
"check:format": "turbo run check:format",
"check:types": "turbo run check:types",
"prepare": "husky",
"doctor": "npx react-doctor@latest"
},
"devDependencies": {
"husky": "catalog:",
"lint-staged": "catalog:",
"oxfmt": "catalog:",
"oxlint": "catalog:",
"react-doctor": "^0.4.2",
"turbo": "catalog:"
},
"lint-staged": {
"*.{js,jsx,ts,tsx,cjs,mjs,cts,mts,json,css,md}": [
"pnpm exec oxfmt --no-error-on-unmatched-pattern"
],
"*.{js,jsx,ts,tsx,cjs,mjs,cts,mts}": [
"pnpm exec oxlint --fix --deny-warnings"
]
},
"engines": {
"node": ">=22.18.0"
},
"packageManager": "pnpm@11.3.0+sha512.2c403d6594527287672b1f7056343a1f7c3634036a67ffabfcc2b3d7595d843768f8787148d1b57cf7956c90606bbd192857c363af19e96d2d0ec9ec5741d215"
}