forked from aws/graph-explorer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
73 lines (73 loc) · 2.18 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
{
"name": "graph-explorer",
"version": "1.11.0",
"description": "Graph Explorer",
"author": "amazon",
"license": "Apache-2.0",
"packageManager": "pnpm@9.13.0",
"engines": {
"node": ">=22.11.0",
"pnpm": "9.13.0"
},
"private": true,
"scripts": {
"prepare": "husky install",
"precommit": "lint-staged && pnpm check:types",
"lint": "eslint . --fix",
"check:lint": "eslint .",
"format": "prettier --write .",
"check:format": "prettier --check .",
"test": "vitest run",
"test:watch": "vitest",
"coverage": "vitest run --coverage",
"check:types": "tsc --build --force",
"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": "^1.2.3",
"@eslint/js": "^9.15.0",
"@tanstack/eslint-plugin-query": "^5.60.1",
"@vitest/coverage-v8": "^2.1.5",
"eslint": "^9.15.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-react": "^7.37.2",
"eslint-plugin-react-hooks": "^5.0.0",
"globals": "^15.12.0",
"husky": "^9.1.7",
"lint-staged": "^15.2.10",
"prettier": "3.3.3",
"typescript": "^5.6.3",
"typescript-eslint": "8.0.0-alpha.42",
"vitest": "^2.1.5"
},
"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"
}
}
}