-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
64 lines (64 loc) · 1.83 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
56
57
58
59
60
61
62
63
64
{
"name": "root",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"build": "nx run-many -t=build -p zudoku config",
"mismatches": "syncpack list-mismatches",
"lint": "eslint --cache --fix .",
"lint:ci": "eslint .",
"format": "prettier --write .",
"format:ci": "prettier --check .",
"prepare": "husky",
"release:pre": "gh workflow run release.yaml -f releaseType=prerelease",
"release:minor": "gh workflow run release.yaml -f releaseType=minor",
"local": "cp .env.example .env",
"build:clean": "tsc --build --clean",
"reset": "nx reset && npm run build:clean",
"clean": "git clean -Xfde !.env"
},
"lint-staged": {
"**/*.{ts,tsx,json,md,yml,js,jsx,css,html}": [
"prettier --write"
],
"**/*.{ts,tsx,js,jsx,mjs}": [
"eslint --cache --fix"
]
},
"engines": {
"node": ">=20"
},
"devDependencies": {
"@nx/eslint": "20.3.0",
"@nx/vite": "20.3.0",
"@nx/web": "20.3.0",
"@typescript-eslint/eslint-plugin": "8.19.1",
"@typescript-eslint/parser": "8.19.1",
"eslint": "8.57.0",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-import": "2.31.0",
"eslint-plugin-react": "7.37.3",
"eslint-plugin-react-hooks": "5.1.0",
"eslint-plugin-react-refresh": "0.4.16",
"husky": "9.0.11",
"lint-staged": "15.2.10",
"nx": "20.3.0",
"prettier": "3.4.2",
"prettier-plugin-organize-imports": "4.1.0",
"syncpack": "13.0.0",
"typescript": "5.7.2"
},
"pnpm": {
"overrides": {
"braces": ">=3.0.3",
"dset": ">=3.1.4",
"serve-handler>path-to-regexp": ">=3.3.0",
"react-remove-scroll": ">=2.6.2",
"use-sidecar": ">=1.1.3"
},
"patchedDependencies": {
"[email protected]": "patches/[email protected]"
}
}
}