-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1.21 KB
/
package.json
File metadata and controls
38 lines (38 loc) · 1.21 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
{
"name": "template",
"version": "1.9.0",
"private": false,
"description": "A Fullstack Template for .NET 9 and Next.js",
"scripts": {
"dev": "pnpm --parallel dev",
"compose": "docker compose up --build -d",
"stage": "docker compose -f 'compose-stage.yaml' up --build -d",
"restore": "pnpm -F=backend restore",
"build": "pnpm --parallel build",
"publish": "pnpm run -F=backend publish",
"migrate:add": "pnpm -F=backend migrate:add",
"ef:install": "pnpm -F=backend ef:install",
"ef:bundle": "pnpm -F=backend ef:bundle",
"lint": "pnpm -F=frontend lint",
"format": "pnpm -F=frontend format",
"prepare": "husky"
},
"devDependencies": {
"@commitlint/cli": "^19.5.0",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/commit-analyzer": "^12.0.0",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^10.0.5",
"@semantic-release/npm": "^12.0.1",
"@semantic-release/release-notes-generator": "^13.0.0",
"commitizen": "^4.3.1",
"cz-conventional-changelog": "^3.3.0",
"husky": "^9.1.6",
"semantic-release": "^23.1.1"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}