-
-
Notifications
You must be signed in to change notification settings - Fork 256
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.73 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 1.73 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
57
58
59
60
61
62
63
64
65
{
"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",
"publishConfig": {
"registry": "https://registry.npmjs.org/",
"access": "public"
},
"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",
"build:no-tauri": "nx run-many -t 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:no-tauri",
"publish": "nx run-many -t publish"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@types/node": "^25.6.0",
"cross-env": "^10.1.0",
"eslint": "^10.3.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.5",
"eslint-plugin-react": "^7.37.5",
"globals": "^17.6.0",
"husky": "^9.1.7",
"lint-staged": "^16.4.0",
"nx": "22.7.1",
"prettier": "^3.8.3",
"prettier-plugin-tailwindcss": "^0.8.0",
"turbo": "^2.9.8",
"typescript": "catalog:",
"typescript-eslint": "^8.59.1",
"vitest": "4.1.5"
},
"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",
"dependencies": {
"react-error-boundary": "^6.1.1"
}
}