-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 1.06 KB
/
package.json
File metadata and controls
33 lines (33 loc) · 1.06 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
{
"name": "yumping-games",
"private": true,
"version": "1.0.1",
"description": "This is a monorepo with multiple packages and apps",
"devDependencies": {
"@commitlint/cli": "^20.4.3",
"@commitlint/config-conventional": "^20.4.3",
"@eslint/js": "^9.39.3",
"eslint": "^9.39.3",
"husky": "^9.1.7",
"lint-staged": "^16.3.3",
"prettier": "^3.8.1",
"typescript": "^5.9.3",
"typescript-eslint": "^8.56.1"
},
"scripts": {
"api:dev": "pnpm --filter @yumping-games/api dev",
"api:lint": "pnpm --filter @yumping-games/api lint",
"api:build": "pnpm --filter @yumping-games/api build",
"web:dev": "pnpm --filter @yumping-games/web dev",
"web:lint": "pnpm --filter @yumping-games/web lint",
"web:build": "pnpm --filter @yumping-games/web build",
"dev": "pnpm --filter ./apps/* dev",
"format:fix": "prettier --write .",
"format:check": "prettier --check .",
"prepare": "husky"
},
"lint-staged": {
"apps/api/**/*.{ts,js}": "pnpm api:lint",
"apps/web/**/*.{ts,tsx,js,jsx}": "pnpm web:lint"
}
}