-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.7 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": "ahhachul",
"private": true,
"scripts": {
"prepare": "husky",
"preinstall": "corepack enable",
"clean:branch": "git fetch --prune && git branch | grep -v '^*' | xargs git branch -D",
"clean:cache": "nx reset",
"app:type": "nx type-check @ahhachul/app",
"app:lint": "nx lint @ahhachul/app",
"app:test": "nx test @ahhachul/app",
"app:build": "nx build @ahhachul/app",
"nextjs:type": "nx type-check @ahhachul/one-app",
"nextjs:lint": "nx lint @ahhachul/one-app",
"nextjs:test": "nx test @ahhachul/one-app",
"nextjs:build": "nx build @ahhachul/one-app",
"nextjs:start": "nx start @ahhachul/one-app",
"all:start": "nx run-many --target=start --all",
"all:build": "nx run-many --target=build --all",
"all:lint": "nx run-many --target=lint --all",
"all:lint:fix": "nx run-many --target=lint:fix --all",
"all:test": "nx run-many --target=test --all"
},
"devDependencies": {
"@trivago/prettier-plugin-sort-imports": "^4.3.0",
"@typescript-eslint/eslint-plugin": "^7.10.0",
"@typescript-eslint/parser": "^7.10.0",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-compat": "^6.0.2",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-react": "^7.34.1",
"eslint-plugin-unused-imports": "^4.1.4",
"husky": "^9.0.11",
"nano-staged": "^0.8.0",
"nx": "^20.3.1",
"prettier": "^3.2.5",
"typescript": "^5"
},
"packageManager": "[email protected]",
"engines": {
"node": "20.13.0"
},
"browserslist": {
"production": [
"iOS >= 13.4",
"last 3 Safari versions",
"> 0.5% in KR",
"not dead"
],
"development": [
"last 1 chrome version"
]
}
}