-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.55 KB
/
Copy pathpackage.json
File metadata and controls
52 lines (52 loc) · 1.55 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
{
"name": "battlepass-stack",
"version": "0.6.0",
"description": "Battlepass System - Rewrite with Event-Driven Architecture",
"private": true,
"workspaces": [
"packages/*",
"services/*"
],
"scripts": {
"build": "turbo run build",
"test": "turbo run test",
"lint": "turbo run lint",
"format": "turbo run format",
"format:check": "prettier --check '**/*.{ts,tsx,js,jsx,json,md}'",
"dev": "turbo run dev",
"clean": "turbo run clean && rm -rf node_modules",
"typecheck": "turbo run typecheck",
"db:generate": "pnpm --filter @battlepass/shared db:generate",
"db:migrate": "pnpm --filter @battlepass/shared db:migrate",
"db:migrate:deploy": "pnpm --filter @battlepass/shared db:migrate:deploy",
"db:studio": "pnpm --filter @battlepass/shared db:studio",
"prepare": "husky",
"commit": "git-cz",
"release": "semantic-release"
},
"devDependencies": {
"@commitlint/cli": "^19.0.0",
"@commitlint/config-conventional": "^19.0.0",
"@commitlint/cz-commitlint": "^19.0.0",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"commitizen": "^4.3.0",
"conventional-changelog-conventionalcommits": "^6.0.0",
"husky": "^9.0.0",
"semantic-release": "^23.0.0",
"turbo": "^2.0.0",
"typescript": "^5.3.0",
"prettier": "^3.1.0",
"@types/node": "^20.10.0"
},
"engines": {
"node": ">=20.0.0",
"pnpm": ">=8.0.0"
},
"packageManager": "pnpm@8.15.0",
"config": {
"commitizen": {
"path": "@commitlint/cz-commitlint"
}
}
}