-
Notifications
You must be signed in to change notification settings - Fork 93
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.8 KB
/
Copy pathpackage.json
File metadata and controls
60 lines (60 loc) · 1.8 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
{
"name": "graph-explorer",
"version": "3.2.0",
"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"
},
"devDependencies": {
"@tanstack/eslint-plugin-query": "5.101.0",
"@types/node": "^24.13.1",
"@vitest/coverage-v8": "4.1.9",
"babel-plugin-react-compiler": "^1.0.0",
"eslint-plugin-react-hooks": "7.1.1",
"husky": "^9.1.7",
"lint-staged": "^17.0.7",
"oxfmt": "^0.55.0",
"oxlint": "1.62.0",
"oxlint-tsgolint": "0.23.0",
"typescript": "^6.0.3",
"vitest": "4.1.9"
},
"lint-staged": {
"!(**/*.{js,ts,tsx})": "oxfmt --no-error-on-unmatched-pattern",
"**/*.{js,ts,tsx}": [
"oxlint --fix",
"oxfmt"
]
},
"devEngines": {
"runtime": {
"name": "node",
"version": ">=24.16.0",
"onFail": "error"
}
},
"engines": {
"node": ">=24.16.0",
"pnpm": ">=11.9.0"
},
"packageManager": "pnpm@11.9.0+sha512.bd682d5d03fe525ef7c9fd6780c6884d1e756ac4c9c9fe00c538782824310dcf90e3ddc4f53835f06dfaebd5085e41855e0bcbb3b60de2ac5bbab89e5036f03b"
}