forked from aws/graph-explorer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
61 lines (61 loc) · 1.95 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
{
"name": "graph-explorer",
"version": "1.5.1",
"description": "Graph Explorer",
"packageManager": "pnpm@8.15.4+sha256.cea6d0bdf2de3a0549582da3983c70c92ffc577ff4410cbf190817ddc35137c2",
"engines": {
"node": ">=16.15.1"
},
"scripts": {
"prepare": "husky install",
"precommit": "lint-staged && pnpm types:check",
"lint": "pnpm -F graph-explorer lint",
"lint:check": "pnpm -F graph-explorer lint:check",
"format": "pnpm -F graph-explorer format",
"format:check": "pnpm -F graph-explorer format:check",
"test": "pnpm -F graph-explorer test",
"types:check": "pnpm -F graph-explorer types:check",
"start": "pnpm -F graph-explorer start",
"build": "pnpm -F graph-explorer build",
"start:proxy-server": "pnpm -F graph-explorer-proxy-server start",
"dev": "concurrently \"pnpm start:proxy-server\" \"pnpm start\""
},
"author": "amazon",
"license": "Apache-2.0",
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^7.1.0",
"@typescript-eslint/parser": "^7.1.0",
"concurrently": "^8.2.0",
"eslint": "^8.57.0",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"husky": "^9.0.11",
"lint-staged": "^13.2.3",
"prettier": "3.2.5",
"typescript": "^5.1.6"
},
"lint-staged": {
"*.{ts,tsx}": [
"eslint --fix",
"prettier --write"
]
},
"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.2": ">=4.5.2",
"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"
}
}
}