-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
71 lines (71 loc) · 1.62 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
{
"name": "firebird",
"version": "0.0.1",
"main": "dist/index.js",
"author": "Nejc Drobnic <yo@quantumlytangled.com> (https://quantumlytangled.com)",
"license": "Apache-2.0",
"private": true,
"scripts": {
"build": "tsc -b src",
"docker:build": "yarn run build",
"docker:start": "node index.js"
},
"dependencies": {
"@influxdata/influxdb-client": "^1.5.0",
"@influxdata/influxdb-client-apis": "^1.5.0",
"@klasa/cache": "^0.0.3",
"@klasa/utils": "^0.1.0",
"@sentry/node": "5.20.0",
"@spectacles/brokers": "^0.8.0",
"module-alias": "^2.2.2"
},
"devDependencies": {
"@commitlint/cli": "^9.1.1",
"@commitlint/config-conventional": "^9.1.1",
"@skyra/eslint-config": "^5.3.0",
"@types/jest": "^26.0.9",
"@types/module-alias": "^2.0.0",
"@types/node": "^14.0.27",
"@typescript-eslint/eslint-plugin": "^3.8.0",
"@typescript-eslint/parser": "^3.8.0",
"cz-conventional-changelog": "^3.2.0",
"eslint": "^7.6.0",
"husky": "^4.2.5",
"jest": "^26.2.2",
"jest-circus": "^26.2.2",
"lint-staged": "^10.2.11",
"standard-version": "^8.0.2",
"ts-jest": "^26.1.4",
"typedoc": "^0.17.8",
"typescript": "^3.9.7"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"pre-commit": "yarn lint-staged"
}
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"lint-staged": {
"*.ts": [
"eslint --fix --ext ts"
]
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"publishConfig": {
"access": "public"
},
"_moduleAliases": {
"@utils": "dist/lib/util",
"@lib": "dist/lib",
"@root": "dist"
}
}