-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
49 lines (49 loc) · 1.24 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
41
42
43
44
45
46
47
48
49
{
"name": "taskforce-client",
"version": "1.0.0",
"main": "index.js",
"repository": "[email protected]:taskforcesh/taskforce-proxy.git",
"author": "Manuel Astudillo <[email protected]>",
"license": "MIT",
"private": true,
"scripts": {
"build": "tsc",
"dev": "nodemon src/index.ts",
"start": "tsc && node dist/index.js",
"test": "tsc && node dist/lib/test/test.js"
},
"dependencies": {
"@taskforcesh/message-broker": "^1.0.1",
"chalk": "^2.4.2",
"lodash": "^4.17.11",
"strict-event-emitter-types": "^2.0.0",
"ws": "^7.4.6"
},
"devDependencies": {
"@commitlint/cli": "^8.0.0",
"@commitlint/config-conventional": "^8.0.0",
"@types/bull": "^3.5.14",
"@types/chalk": "^2.2.0",
"@types/lodash": "^4.14.134",
"@types/node": "^12.0.0",
"@types/ws": "^6.0.1",
"husky": "^2.4.1",
"nodemon": "^1.19.1",
"semantic-release": "^15.13.16",
"ts-node": "^8.2.0",
"typescript": "^3.4.5"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"release": {
"branch": "next",
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
"@semantic-release/npm"
]
}
}