-
Notifications
You must be signed in to change notification settings - Fork 82
Expand file tree
/
Copy pathpackage.json
More file actions
85 lines (85 loc) · 2.67 KB
/
package.json
File metadata and controls
85 lines (85 loc) · 2.67 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
{
"name": "graph-explorer",
"version": "3.0.1",
"description": "Graph Explorer",
"author": "amazon",
"license": "Apache-2.0",
"type": "module",
"packageManager": "pnpm@10.28.1+sha512.7d7dbbca9e99447b7c3bf7a73286afaaf6be99251eb9498baefa7d406892f67b879adb3a1d7e687fc4ccc1a388c7175fbaae567a26ab44d1067b54fcb0d6a316",
"devEngines": {
"runtime": {
"name": "node",
"version": ">=24.13.0",
"onFail": "error"
},
"packageManager": {
"name": "pnpm",
"version": ">=10.28.1",
"onFail": "error"
}
},
"engines": {
"node": ">=24.13.0",
"pnpm": ">=10.28.1"
},
"private": true,
"scripts": {
"prepare": "husky",
"lint": "eslint --fix --concurrency=auto",
"check:lint": "eslint --concurrency=auto",
"format": "prettier --write .",
"check:format": "prettier --check .",
"test": "vitest run",
"test:watch": "vitest",
"coverage": "vitest run --coverage",
"check:types": "pnpm -r --include-workspace-root --parallel --stream run typecheck",
"typecheck": "tsc --noEmit",
"checks": "pnpm run check:lint && pnpm run check:format && pnpm run check:types",
"start": "pnpm --filter \"graph-explorer-proxy-server\" run start",
"clean": "pnpm --stream -r run clean",
"clean:dep": "rm -rf node_modules && pnpm -r exec rm -rf node_modules",
"build": "pnpm --stream -r run build",
"dev": "pnpm --stream -r run dev"
},
"devDependencies": {
"@eslint/compat": "^2.0.3",
"@eslint/js": "^10.0.1",
"@tanstack/eslint-plugin-query": "5.96.2",
"@vitest/coverage-v8": "4.1.4",
"babel-plugin-react-compiler": "^1.0.0",
"eslint": "^10.0.3",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-perfectionist": "^5.6.0",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "7.0.1",
"globals": "^16.5.0",
"husky": "^9.1.7",
"lint-staged": "^16.4.0",
"prettier": "^3.8.1",
"prettier-plugin-tailwindcss": "^0.7.2",
"typescript": "^5.9.3",
"typescript-eslint": "^8.57.0",
"vitest": "4.1.4"
},
"lint-staged": {
"!(**/*.{js,ts,tsx})": "prettier --ignore-unknown --write",
"**/*.{js,ts,tsx}": [
"eslint --fix",
"prettier --ignore-unknown --write"
]
},
"pnpm": {
"overrides": {
"brace-expansion@>=5.0.0 <5.0.5": ">=5.0.5",
"dompurify@>=3.1.3 <3.3.2": ">=3.3.2",
"fast-xml-parser@<5.5.7": ">=5.5.7",
"flatted@<3.4.2": ">=3.4.2",
"minimatch@<10.2.3": ">=10.2.3",
"path-to-regexp@>=8.0.0 <8.4.0": ">=8.4.0",
"picomatch@<2.3.2": ">=2.3.2",
"picomatch@>=4.0.0 <4.0.4": ">=4.0.4",
"yaml@>=1.0.0 <1.10.3": ">=1.10.3",
"yaml@>=2.0.0 <2.8.3": ">=2.8.3"
}
}
}