-
Notifications
You must be signed in to change notification settings - Fork 103
/
Copy pathpackage.json
55 lines (55 loc) · 1.52 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
{
"name": "@dineug/erd-editor-monorepo",
"private": true,
"engines": {
"node": ">=18.0"
},
"repository": {
"type": "git",
"url": "https://github.com/dineug/erd-editor.git"
},
"bugs": {
"url": "https://github.com/dineug/erd-editor/issues"
},
"homepage": "https://github.com/dineug/erd-editor#readme",
"author": "SeungHwan-Lee <[email protected]>",
"license": "MIT",
"scripts": {
"build": "nx run-many -t build",
"test": "nx run-many -t test",
"nx:clear": "nx reset",
"nx:graph": "nx graph",
"prepare": "husky",
"format": "npm run format:eslint && npm run format:prettier",
"format:eslint": "eslint --ignore-path .gitignore \"**/*.{js,ts,tsx}\" --fix",
"format:prettier": "prettier \"**/*.{js,ts,tsx}\" --write",
"lint": "eslint \"**/*.{js,ts,tsx}\""
},
"resolutions": {
"typescript": "5.4.5"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^7.6.0",
"@typescript-eslint/parser": "^7.6.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-simple-import-sort": "^12.0.0",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.4.6",
"husky": "^9.0.11",
"lint-staged": "^15.2.2",
"prettier": "^3.2.5",
"tslib": "^2.6.2",
"typescript": "5.4.5",
"vite": "^5.2.8",
"nx": "20.0.3"
},
"lint-staged": {
"**/*.{js,ts,tsx}": [
"eslint --fix",
"prettier --write"
]
}
}