-
-
Notifications
You must be signed in to change notification settings - Fork 121
/
Copy pathpackage.json
49 lines (49 loc) · 1.31 KB
/
package.json
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
{
"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": "turbo run dev",
"tauri:dev": "turbo run tauri:dev",
"build": "turbo run build",
"tauri:build": "turbo run tauri:build",
"tauri:build:android": "turbo run tauri:build:android",
"prepare": "husky",
"lint": "eslint",
"lint:fix": "eslint --fix",
"format": "prettier --write .",
"test": "pnpm --filter @pg/app test"
},
"devDependencies": {
"@eslint/js": "^9.17.0",
"@types/node": "^22.13.13",
"eslint": "^9.17.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-react": "^7.37.3",
"eslint-plugin-storybook": "^0.11.4",
"globals": "^15.14.0",
"husky": "^9.1.7",
"lint-staged": "^15.4.3",
"prettier": "^3.4.2",
"prettier-plugin-tailwindcss": "^0.6.9",
"turbo": "^2.4.5-canary.6",
"typescript-eslint": "^8.22.0"
},
"pnpm": {
"peerDependencyRules": {
"ignoreMissing": [
"@algolia/client-search",
"search-insights"
]
},
"onlyBuiltDependencies": [
"@swc/core",
"esbuild",
"msw",
"sharp"
]
},
"packageManager": "[email protected]"
}