-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.39 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.39 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
{
"name": "demo",
"version": "1.0.0",
"description": "Demo Service",
"author": "Research & Development",
"license": "UNLICENSED",
"private": true,
"keywords": [
"demo"
],
"scripts": {
"prebuild": "rimraf dist",
"build": "yarn build:ts && yarn lint",
"build:ts": "tsc",
"format": "prettier --write \"src/**/*.ts\"",
"start": "yarn serve",
"start:dev": "yarn serve:dev",
"serve": "node dist/src/main.js",
"serve:dev": "nodemon src/main.ts",
"serve:debug": "nodemon --inspect dist/src/main.js",
"lint": "tslint -p tsconfig.json -c tslint.json",
"watch": "yarn watch:ts && yarn watch:server",
"watch:ts": "tsc --watch",
"watch:server": "nodemon dist/src/main.js"
},
"dependencies": {
"express": "^4.17.1",
"tslib": "^2.3.1",
"winston": "^3.3.3"
},
"devDependencies": {
"@commitlint/cli": "^13.1.0",
"@commitlint/config-conventional": "^13.1.0",
"@types/express": "^4.17.13",
"@types/winston": "^2.4.4",
"husky": "^7.0.1",
"nodemon": "^2.0.12",
"prettier": "^2.3.2",
"rimraf": "^3.0.2",
"ts-node": "^10.2.0",
"tslint": "^6.1.3",
"typescript": "^4.3.5"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"pre-commit": "yarn lint",
"pre-push": "yarn format && yarn lint"
}
},
"resolutions": {
"conventional-changelog": "^1.0.0"
}
}