-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.33 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
{
"name": "@dineug/go-monorepo",
"private": true,
"workspaces": [
"packages/*"
],
"engines": {
"node": ">=18.14.0"
},
"repository": {
"type": "git",
"url": "https://github.com/dineug/go.git"
},
"bugs": {
"url": "https://github.com/dineug/go/issues"
},
"homepage": "https://github.com/dineug/go#readme",
"author": "SeungHwan-Lee <[email protected]>",
"license": "MIT",
"scripts": {
"build": "nx run-many -t build",
"prepare": "husky install",
"format": "npm run format:eslint && npm run format:prettier",
"format:eslint": "eslint \"**/*.{js,ts}\" --fix",
"format:prettier": "prettier \"**/*.{js,ts}\" --write",
"lint": "eslint \"**/*.{js,ts}\""
},
"resolutions": {
"typescript": "5.3.3"
},
"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",
"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": "18.2.4"
},
"lint-staged": {
"**/*.{js,ts}": [
"eslint --fix",
"prettier --write"
]
}
}