-
-
Notifications
You must be signed in to change notification settings - Fork 245
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.51 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.51 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
44
45
46
47
48
49
50
51
52
53
54
55
56
{
"name": "project-graph",
"version": "1.0.0",
"description": "An open-source project that aims to provide a next-generation node diagram tool for visual thinking.",
"type": "module",
"scripts": {
"dev": "nx run-many -t dev tauri:dev",
"build": "nx run-many -t build tauri:build",
"build:ci": "nx run-many --skipNxCache -t build tauri:build",
"prepare": "husky",
"lint": "eslint",
"lint:fix": "eslint --fix",
"format": "prettier --write .",
"test": "vitest",
"tauri": "pnpm --filter @graphif/project-graph tauri",
"prepublish": "pnpm run build"
},
"devDependencies": {
"@eslint/js": "^9.31.0",
"@types/node": "^24.1.0",
"cross-env": "^10.0.0",
"eslint": "^9.31.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.3",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-storybook": "^9.0.18",
"globals": "^16.3.0",
"husky": "^9.1.7",
"lint-staged": "^16.1.2",
"prettier": "^3.6.2",
"prettier-plugin-tailwindcss": "^0.6.14",
"turbo": "^2.5.5-canary.1",
"typescript-eslint": "^8.38.0",
"vitest": "3.2.4",
"nx": "21.6.3"
},
"pnpm": {
"peerDependencyRules": {
"ignoreMissing": [
"@algolia/client-search",
"search-insights"
]
},
"onlyBuiltDependencies": [
"@swc/core",
"bcrypt",
"esbuild",
"msw",
"sharp"
],
"patchedDependencies": {
"typescript": "patches/typescript.patch"
}
},
"packageManager": "pnpm@10.6.5"
}