forked from aws/graph-explorer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.57 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
{
"name": "graph-explorer",
"version": "1.2.1",
"description": "Graph Explorer",
"packageManager": "[email protected]",
"engines": {
"node": ">=16.15.1"
},
"scripts": {
"prepare": "husky install",
"precommit": "lint-staged && pnpm types:check",
"lint": "pnpm -F graph-explorer lint",
"format": "pnpm -F graph-explorer format",
"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": "^5.60.0",
"@typescript-eslint/parser": "^5.60.0",
"concurrently": "^8.2.0",
"eslint": "^8.43.0",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"husky": "^8.0.3",
"lint-staged": "^13.2.2",
"prettier": "2.8.8",
"typescript": "^5.1.3"
},
"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@>=3.0.2 <3.2.7": ">=3.2.7",
"xml2js@<0.5.0": ">=0.5.0",
"semver@<7.5.2": ">=7.5.2"
}
}
}