-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
40 lines (40 loc) · 1.18 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
39
40
{
"name": "landlord-server",
"version": "1.15.3",
"description": "NEXTERS 17th - 건물주들 서버",
"repository": "https://github.com/Nexters/landlords-server.git",
"author": "Mincheol Kim<[email protected]>",
"main": "src/asgi.py",
"license": "MIT",
"scripts": {
"start": "pipenv run uvicorn src.asgi: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": "^8.0.1"
},
"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.10"
}
}