-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
98 lines (98 loc) · 2.29 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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
{
"name": "giveaways-interactions",
"private": true,
"version": "2.2.0",
"description": "A feature dense Discord Giveaways bot 🎉",
"main": "dist/index.js",
"scripts": {
"preinstall": "npx only-allow yarn",
"postinstall": "husky install",
"build": "rimraf dist/* && tsc",
"lint": "eslint src --ext .ts",
"lint:fix": "eslint src --fix --ext .ts --debug",
"pre-commit": "yarn run lint && yarn run build",
"prestart": "yarn run build",
"start": "node .",
"dev": "ts-node-dev src/index.ts"
},
"author": "Carter Himmel <[email protected]>",
"license": "MIT",
"dependencies": {
"@discordjs/builders": "^0.4.0",
"@discordjs/collection": "^0.2.1",
"@discordjs/rest": "^0.1.0-canary.0",
"@naval-base/ms": "^3.1.0",
"@prisma/client": "^2.28.0",
"@sapphire/utilities": "^2.0.1",
"bull": "^3.27.0",
"common-tags": "^1.8.0",
"discord-api-types": "^0.21.0",
"discord-interactions": "^2.3.0",
"dotenv-cra": "^3.0.1",
"fastify": "^3.12.0",
"fs-nextra": "^0.5.1",
"pino": "^7.0.0-rc.2",
"prisma": "^2.28.0",
"reflect-metadata": "^0.1.13",
"tsyringe": "^4.6.0"
},
"devDependencies": {
"@commitlint/cli": "^12.0.0",
"@commitlint/config-angular": "^12.0.0",
"@types/bull": "^3.15.3",
"@types/common-tags": "^1.8.0",
"@types/eslint": "^7.2.6",
"@types/moment-duration-format": "^2.2.2",
"@types/ms": "^0.7.31",
"@types/node": "^14.14.27",
"@types/pino": "^6.3.11",
"@typescript-eslint/eslint-plugin": "^4.15.0",
"@typescript-eslint/parser": "^4.15.0",
"eslint": "^7.20.0",
"eslint-config-marine": "^8.1.0",
"eslint-config-prettier": "^7.2.0",
"eslint-plugin-prettier": "^3.3.1",
"husky": "^5.0.9",
"lint-staged": "^10.5.4",
"pino-pretty": "^3.0.0-rc.2",
"prettier": "^2.2.1",
"rimraf": "^3.0.2",
"ts-node-dev": "^1.1.8",
"tslib": "^2.1.0",
"typescript": "^4.1.5"
},
"lint-staged": {
"*.{mjs,js,ts}": "eslint --fix --ext mjs,js,ts",
"*.{json,yml,yaml}": "prettier --write"
},
"commitlint": {
"extends": [
"@commitlint/config-angular"
],
"rules": {
"type-enum": [
2,
"always",
[
"chore",
"build",
"ci",
"docs",
"feat",
"fix",
"perf",
"refactor",
"revert",
"style",
"test",
"types",
"wip"
]
]
}
},
"volta": {
"node": "16.6.0",
"yarn": "1.22.11"
}
}