-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 969 Bytes
/
package.json
File metadata and controls
38 lines (38 loc) · 969 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": "gitcanvas",
"version": "0.1.0",
"private": true,
"description": "Desktop app to visually organize local git repositories on freeform boards.",
"packageManager": "pnpm@10.32.1",
"engines": {
"node": ">=20.10.0"
},
"scripts": {
"dev": "turbo run dev --parallel",
"build": "turbo run build",
"typecheck": "turbo run typecheck",
"lint": "turbo run lint",
"format": "prettier --write .",
"format:check": "prettier --check ."
},
"devDependencies": {
"@eslint/js": "^9.39.4",
"@types/node": "^22.9.0",
"eslint": "^9.15.0",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^5.2.0",
"eslint-plugin-react-refresh": "^0.5.2",
"globals": "^17.4.0",
"prettier": "^3.4.1",
"turbo": "^2.3.0",
"typescript": "^5.7.2",
"typescript-eslint": "^8.58.1"
},
"pnpm": {
"onlyBuiltDependencies": [
"electron",
"esbuild",
"better-sqlite3"
]
}
}