-
Notifications
You must be signed in to change notification settings - Fork 148
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.43 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.43 KB
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
{
"name": "@dineug/erd-editor-monorepo",
"private": true,
"type": "module",
"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 <dineug2@gmail.com>",
"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 . --fix",
"format:prettier": "prettier \"**/*.{ts,tsx}\" --write",
"lint": "eslint ."
},
"resolutions": {
"typescript": "5.8.2"
},
"devDependencies": {
"@eslint/compat": "^1.2.7",
"@eslint/js": "^9.22.0",
"eslint": "^9.22.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-react-hooks": "^5.2.0",
"eslint-plugin-react-refresh": "^0.4.19",
"eslint-plugin-simple-import-sort": "^12.1.1",
"globals": "^16.0.0",
"husky": "^9.1.7",
"lint-staged": "^15.4.3",
"nx": "20.5.0",
"prettier": "^3.5.3",
"tslib": "^2.8.1",
"typescript": "5.8.2",
"typescript-eslint": "^8.26.0",
"vite": "^6.2.1"
},
"lint-staged": {
"**/*.{ts,tsx}": [
"eslint --fix",
"prettier --write"
]
}
}