-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
81 lines (81 loc) · 1.44 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
72
73
74
75
76
77
78
79
80
81
{
"name": "bot",
"version": "1.0.0",
"description": "",
"main": "index.js",
"workspaces": [
"."
],
"scripts": {
"test": "ts-node-dev --respawn --transpile-only --poll ./src/index.ts",
"lint": "prettier --write .",
"start": "node dist/index.js",
"build": "tsc",
"postinstall": "tsc"
},
"engines": {
"node": ">=14"
},
"dependencies": {
"consola": "^2.15.3",
"discord.js": "github:discordjs/discord.js",
"express": "^4.17.1",
"glob": "^7.1.7"
},
"keywords": [],
"author": "",
"license": "MIT",
"husky": {
"hooks": {
"pre-commit": "yarn dlx @yarnpkg/doctor && lint-staged",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"lint-staged": {
"*.ts": "prettier --write",
"*.js": "prettier --write"
},
"commitlint": {
"extends": [
"@commitlint/config-angular"
],
"rules": {
"scope-case": [
2,
"always",
"pascal-case"
],
"type-enum": [
2,
"always",
[
"chore",
"build",
"ci",
"docs",
"feat",
"fix",
"perf",
"refactor",
"revert",
"style",
"test"
]
]
}
},
"devDependencies": {
"@commitlint/cli": "^12.1.4",
"@commitlint/config-angular": "^12.1.4",
"@types/express": "^4",
"@types/glob": "^7.1.3",
"@types/node": "^15.3.0",
"@types/prettier": "^2.2.3",
"husky": "^6.0.0",
"lint-staged": "^11.0.0",
"prettier": "^2.3.0",
"ts-node": "^9.1.1",
"ts-node-dev": "^1.1.6",
"typescript": "^4.2.4"
}
}