forked from nestoralvarezd/graph-explorer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 1.17 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
{
"name": "graph-explorer",
"version": "1.0.0",
"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.40.0",
"@typescript-eslint/parser": "^5.41.0",
"concurrently": "^7.5.0",
"eslint": "^7.32.0",
"eslint-plugin-react": "^7.31.10",
"eslint-plugin-react-hooks": "^4.6.0",
"husky": "^8.0.0",
"lint-staged": "^13.0.3",
"prettier": "2.1.2",
"typescript": "^4.8.4"
},
"lint-staged": {
"*.{ts,tsx}": [
"eslint --fix",
"prettier --write"
]
}
}