-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
38 lines (38 loc) · 1.05 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
{
"name": "todo-list-fastapi",
"version": "1.8.10",
"description": "practice project",
"main": "src/main.py",
"license": "MIT",
"scripts": {
"start": "pipenv run uvicorn src.main:app --host 0.0.0.0 --port 5000",
"build": "make docker",
"lint": "make lint",
"test": "make test",
"release": "standard-version",
"version": "echo v$npm_package_version",
"next-version": "node ./get-next-version.js"
},
"devDependencies": {
"@commitlint/cli": "^8.3.5",
"@commitlint/config-conventional": "^8.3.4",
"husky": "^4.2.5",
"standard-version": "^7.1.0"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"husky": {
"skipCI": false,
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"pre-commit": "npm run lint && npm run test && npm run build",
"pre-push": "npm run lint"
}
},
"dependencies": {
"yarn": "^1.22.4"
}
}