-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.58 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
{
"name": "@petboarding/monorepo",
"private": true,
"workspaces": [
"packages/*"
],
"engines": {
"node": ">=18.0.0"
},
"scripts": {
"build": "run-s build:app build:api",
"build:app": "cd packages/app && pnpm run build:ssr",
"build:api": "cd packages/api && pnpm run build",
"format:check:api": "cd packages/api && pnpm run format:check",
"format:check:app": "cd packages/app && pnpm run format:check",
"format:write:api": "cd packages/api && pnpm run format:write",
"format:write:app": "cd packages/app && pnpm run format:write",
"format:check": "run-s format:check:app format:check:api",
"format:write": "run-s format:write:app format:write:api",
"version": "changeset version",
"publish": "changeset publish",
"lint:api": "cd packages/api && pnpm run lint",
"lint:app": "cd packages/app && pnpm run lint",
"lint": "run-s lint:api lint:app",
"test:api": "cd packages/api && pnpm run test",
"test:e2e:api": "cd packages/api && pnpm run test:e2e",
"test": "run-s test:api",
"test:e2e": "run-s test:e2e:api"
},
"devDependencies": {
"@changesets/cli": "^2.27.12",
"@commitlint/cli": "^19.7.1",
"@commitlint/config-conventional": "^19.7.1",
"@types/node": "^22.13.1",
"changesets": "^1.0.2",
"git-conventional-commits": "^2.7.1",
"npm-run-all": "^4.1.5",
"simple-git-hooks": "^2.11.1"
},
"simple-git-hooks": {
"pre-commit": "pnpm run lint && pnpm run format:check",
"commit-msg": "pnpm exec commitlint --edit $1"
},
"pnpm": {
"overrides": {
"vite": "6.0.11"
}
}
}