-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.62 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.62 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
55
56
{
"name": "@pengubot/permafrost",
"version": "0.0.0",
"description": "Billing microservice for pengubot",
"main": "dist/index.js",
"repository": "git@github.com:PenguBot/permafrost.git",
"author": "Pengubot",
"maintainers": [
"Aditya N. Tripathi <adityatripathidelhi@gmail.com>",
"Charalampos Fanoulis <yo@fanoulis.dev>"
],
"license": "Apache-2.0",
"private": true,
"scripts": {
"lint:fix": "eslint --fix --ext ts src",
"lint": "eslint --ext ts src",
"build": "tsc -b src",
"build:watch": "tsc -b src -w",
"build:clean": "tsc -b src --clean",
"typeorm": "node -r module-alias/register ./node_modules/typeorm/cli.js"
},
"dependencies": {
"fastify": "^3.1.1",
"fastify-helmet": "^4.0.2",
"fastify-sensible": "^3.0.1",
"stripe": "^8.81.0",
"veza": "^1.1.0"
},
"devDependencies": {
"@commitlint/cli": "^9.1.1",
"@commitlint/config-conventional": "^9.1.1",
"@pengubot/eslint-config": "^1.0.0",
"@typescript-eslint/eslint-plugin": "^3.7.1",
"@typescript-eslint/parser": "^3.7.1",
"eslint": "^7.6.0",
"husky": "^4.2.5",
"lint-staged": "^10.2.11",
"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"
]
}
}