-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.52 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.52 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
{
"name": "vodhub",
"version": "0.1.0",
"private": true,
"type": "module",
"scripts": {
"build": "pnpm -r build",
"dev": "pnpm --filter @vodhub/backend dev & pnpm --filter @vodhub/frontend dev",
"dev:backend": "pnpm --filter @vodhub/backend dev",
"dev:frontend": "pnpm --filter @vodhub/frontend dev",
"lint": "pnpm -r lint",
"lint:fix": "pnpm -r lint:fix",
"typecheck": "pnpm -r typecheck",
"format": "prettier --write .",
"format:check": "prettier --check .",
"prepare": "husky",
"commit": "git-cz"
},
"devDependencies": {
"@commitlint/cli": "^20.5.0",
"@commitlint/config-conventional": "^20.5.0",
"@eslint/js": "^9.39.4",
"commitizen": "^4.3.1",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^9.39.4",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-import-x": "^4.16.2",
"eslint-plugin-prettier": "^5.5.5",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^7.0.1",
"eslint-plugin-unused-imports": "^4.4.1",
"husky": "^9.1.7",
"lint-staged": "^16.4.0",
"prettier": "^3.8.2",
"typescript-eslint": "^8.57.2"
},
"packageManager": "pnpm@10.33.0",
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"engines": {
"node": ">=24",
"pnpm": ">=10"
}
}