-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 2.01 KB
/
package.json
File metadata and controls
71 lines (71 loc) · 2.01 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
{
"name": "@pawHaven",
"version": "1.0.0",
"private": true,
"type": "module",
"engines": {
"node": "24.x",
"pnpm": "10"
},
"scripts": {
"prepare": "husky",
"lint-staged": "lint-staged",
"build:backend-core": "turbo run build --filter=@pawhaven/backend-core...",
"build:frontend-core": "turbo run build --filter=@pawhaven/frontend-core...",
"build:shared": "turbo run build --filter=@pawhaven/shared..."
},
"lint-staged": {
"*.{js,jsx,ts,tsx,mjs,cjs}": [
"eslint --fix",
"prettier --write"
],
"*.json": [
"prettier --write"
],
"*.md": [
"prettier --write"
]
},
"description": "PawHaven: An enterprise-level fullstack project built with React and NestJS.",
"author": "aodazhang666@gmail.com",
"repository": {
"type": "git",
"url": "https://github.com/aoda-zhang/PawHaven-Enterprise-FullStack-React-NestJS"
},
"homepage": "https://github.com/aoda-zhang/PawHaven-Enterprise-FullStack-React-NestJS#readme",
"keywords": [
"FullStack",
"react",
"nodejs",
"nestjs",
"monorepo",
"animal-rescue",
"stray-animals",
"pawhaven"
],
"license": "MIT",
"devDependencies": {
"@commitlint/cli": "^20.2.0",
"@commitlint/config-conventional": "^20.2.0",
"@tanstack/eslint-plugin-query": "^5.91.2",
"@typescript-eslint/eslint-plugin": "^8.50.0",
"@typescript-eslint/parser": "^8.50.0",
"eslint": "^8.57.1",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^10.1.8",
"eslint-import-resolver-typescript": "^4.4.4",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^5.5.4",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^7.0.1",
"eslint-plugin-react-refresh": "^0.4.25",
"husky": "^9.1.7",
"lint-staged": "^16.2.7",
"prettier": "^3.7.4",
"turbo": "^2.8.14",
"typescript": "^5.9.3"
},
"packageManager": "pnpm@10.32.1"
}