-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 2.04 KB
/
package.json
File metadata and controls
78 lines (78 loc) · 2.04 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
{
"name": "quickfra-monorepo",
"version": "1.0.0",
"private": true,
"packageManager": "[email protected]",
"engines": {
"node": ">=20.0.0",
"pnpm": ">=9.0.0"
},
"scripts": {
"build": "nx run-many --target=build --all",
"dev": "nx run-many --target=dev --all",
"lint": "nx run-many --target=lint --all",
"test": "nx run-many --target=test --all",
"type-check": "nx run-many --target=type-check --all",
"clean": "nx reset && rm -rf node_modules && rm -rf dist",
"prepare": "husky install"
},
"devDependencies": {
"@nx/eslint-plugin": "^21.2.1",
"@nx/js": "21.2.1",
"@nx/next": "21.2.1",
"@nx/vite": "21.2.1",
"@nx/web": "21.2.1",
"@nx/workspace": "21.2.1",
"@swc-node/register": "~1.9.1",
"@swc/core": "~1.5.7",
"@swc/helpers": "~0.5.11",
"@types/node": "^24.0.3",
"@types/react": "^19.1.8",
"@types/react-dom": "^19.1.6",
"@typescript-eslint/eslint-plugin": "^8.34.1",
"@typescript-eslint/parser": "^8.34.1",
"@vitest/coverage-v8": "^3.0.5",
"@vitest/ui": "^3.0.0",
"eslint": "^9.29.0",
"eslint-config-next": "^15.3.4",
"eslint-config-prettier": "^10.1.5",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^5.2.0",
"husky": "^9.1.7",
"jiti": "2.4.2",
"jsonc-eslint-parser": "^2.1.0",
"lint-staged": "^16.1.2",
"nx": "21.2.1",
"prettier": "^3.5.3",
"tslib": "^2.3.0",
"typescript": "^5.8.3",
"vite": "^6.0.0",
"vitest": "^3.2.4"
},
"workspaces": [
"apps/*",
"packages/*"
],
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"eslint --fix",
"prettier --write"
],
"*.{json,md,yml,yaml}": [
"prettier --write"
]
},
"dependencies": {
"@oclif/core": "^4.4.0",
"@oclif/plugin-help": "^6.2.29",
"@oclif/plugin-plugins": "^5.4.43",
"@types/inquirer": "^9.0.8",
"chalk": "^5.4.1",
"commander": "^14.0.0",
"inquirer": "^12.6.3",
"ora": "^8.2.0",
"ts-node": "^10.9.2",
"zod": "^3.25.67"
}
}