-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
20 lines (20 loc) · 770 Bytes
/
Copy pathpackage.json
File metadata and controls
20 lines (20 loc) · 770 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{
"name": "mypythonproject1",
"version": "0.0.0",
"private": true,
"description": "Root-level package used exclusively for CI tooling (commitlint, semantic-release). App code lives in backend/ and frontend/.",
"scripts": {
"commitlint": "commitlint --from=HEAD~1 --to=HEAD",
"release": "semantic-release"
},
"devDependencies": {
"@commitlint/cli": "^19.3.0",
"@commitlint/config-conventional": "^19.3.0",
"semantic-release": "^24.0.0",
"@semantic-release/commit-analyzer": "^13.0.0",
"@semantic-release/release-notes-generator": "^14.0.0",
"@semantic-release/github": "^11.0.0",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1"
}
}