-
Notifications
You must be signed in to change notification settings - Fork 111
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.79 KB
/
Copy pathpackage.json
File metadata and controls
59 lines (59 loc) · 1.79 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
{
"name": "graph-explorer",
"version": "3.2.2",
"private": true,
"description": "Graph Explorer",
"license": "Apache-2.0",
"author": "amazon",
"type": "module",
"scripts": {
"prepare": "husky",
"lint": "oxlint --fix",
"check:lint": "oxlint",
"format": "oxfmt",
"check:format": "oxfmt --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"
},
"dependencies": {},
"devDependencies": {
"@tanstack/eslint-plugin-query": "5.103.1",
"@vitest/coverage-v8": "5.0.1",
"eslint-plugin-react-hooks": "7.1.1",
"fast-check": "^4.10.2",
"husky": "^9.1.7",
"lint-staged": "^17.5.1",
"oxfmt": "0.68.0",
"oxlint": "1.83.0",
"oxlint-tsgolint": "7.0.2002",
"typescript": "^7.0.2",
"vitest": "5.0.1"
},
"lint-staged": {
"!(**/*.{js,ts,tsx})": "oxfmt --no-error-on-unmatched-pattern",
"**/*.{js,ts,tsx}": [
"oxlint --fix --no-error-on-unmatched-pattern",
"oxfmt"
]
},
"devEngines": {
"runtime": {
"name": "node",
"version": ">=24.21.0",
"onFail": "error"
}
},
"engines": {
"node": ">=24.21.0"
},
"packageManager": "pnpm@12.4.2+sha512.08adc6613180275c7c9edada39dcf08c9c61ad4e7eaf330a4f3461f102b0f907423454d117f98e72d47fef0616070644d7bffc973a6a57f5090a6d7c368b07c9"
}