forked from aws/graph-explorer
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 2.69 KB
/
package.json
File metadata and controls
80 lines (80 loc) · 2.69 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
{
"name": "graph-explorer",
"version": "2.6.0",
"description": "Graph Explorer",
"author": "amazon",
"license": "Apache-2.0",
"type": "module",
"packageManager": "pnpm@10.28.1+sha512.7d7dbbca9e99447b7c3bf7a73286afaaf6be99251eb9498baefa7d406892f67b879adb3a1d7e687fc4ccc1a388c7175fbaae567a26ab44d1067b54fcb0d6a316",
"engines": {
"node": ">=24.13.0"
},
"private": true,
"scripts": {
"prepare": "husky install",
"precommit": "lint-staged && pnpm check:types",
"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:.*/'",
"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.2",
"@eslint/js": "^9.39.2",
"@tanstack/eslint-plugin-query": "^5.91.4",
"@vitest/coverage-v8": "4.0.10",
"babel-plugin-react-compiler": "19.1.0-rc.3",
"eslint": "^9.39.2",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-perfectionist": "^5.4.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.2.7",
"prettier": "^3.8.1",
"prettier-plugin-tailwindcss": "^0.7.2",
"typescript": "^5.9.3",
"typescript-eslint": "^8.54.0",
"vitest": "4.0.10"
},
"lint-staged": {
"*.{js,ts,tsx}": [
"eslint --fix"
],
"**/*": "prettier --write --ignore-unknown"
},
"pnpm": {
"overrides": {
"json5@>=2.0.0 <2.2.2": ">=2.2.2",
"minimatch@<3.0.5": ">=3.0.5",
"loader-utils@>=2.0.0 <2.0.4": ">=2.0.4",
"webpack@>=5.0.0 <5.76.0": ">=5.76.0",
"decode-uri-component@<0.2.1": ">=0.2.1",
"yaml@>=2.0.0-5 <2.2.2": ">=2.2.2",
"vite@>=4.5.0 <4.5.3": ">=4.5.3",
"xml2js@<0.5.0": ">=0.5.0",
"semver@<7.5.2": ">=7.5.2",
"postcss@<8.4.31": ">=8.4.31",
"@babel/traverse@<7.23.2": ">=7.23.2",
"crypto-js@<4.2.0": ">=4.2.0",
"@adobe/css-tools@<4.3.2": ">=4.3.2",
"undici@<5.28.3": ">=5.28.3",
"ws@<8.17.1": ">=8.17.1",
"@eslint/plugin-kit@<0.3.3": ">=0.3.3",
"fast-xml-parser@<5.3.4": ">=5.3.4",
"@isaacs/brace-expansion@<5.0.1": ">=5.0.1"
}
}
}