-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.48 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.48 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
{
"name": "pkrbt",
"private": true,
"type": "module",
"scripts": {
"prepare": "node .husky/install.mjs",
"build": "turbo build",
"dev": "turbo dev",
"lint": "turbo lint",
"format": "prettier --write \"**/*.{ts,tsx,md}\"",
"test": "turbo run test",
"coverage": "turbo run coverage",
"e2e": "turbo run e2e",
"start": "turbo run start",
"seed:sample": "turbo run seed:sample",
"schema:pull": "turbo run schema:pull",
"schema:push": "turbo run schema:push",
"schema:push:dev": "turbo run schema:push:dev",
"schema:push:prod": "turbo run schema:push:prod",
"generate:types": "turbo run generate:types",
"api": "turbo run api"
},
"devDependencies": {
"@commitlint/cli": "^19.5.0",
"@commitlint/config-conventional": "^19.5.0",
"@types/node": "^22.5.5",
"husky": "^9.1.6",
"lint-staged": "^15.2.10",
"prettier": "^3.2.5",
"turbo": "^2.2.3",
"typescript": "^5.4.5"
},
"engines": {
"node": "20.x"
},
"release": {
"branches": [
"+([0-9]).x",
"main",
"next",
{
"name": "beta",
"prerelease": true
}
],
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
"@semantic-release/github",
[
"@semantic-release/exec",
{
"publishCmd": "echo \"version=v${nextRelease.version}\" >> $GITHUB_OUTPUT"
}
]
]
},
"packageManager": "pnpm@9.12.2"
}