This repository has been archived by the owner on Oct 7, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
64 lines (64 loc) · 1.77 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
{
"name": "tcell",
"version": "0.0.0",
"description": "",
"contributors": [
"Souji <timoqueezle@gmail.com>"
],
"license": "NO_LICENSE",
"private": true,
"scripts": {
"build": "rimraf dist && tsc --skipLibCheck",
"start": "node dist/index.js",
"deploy": "node --unhandled-rejections=strict dist/index.js",
"lint": "eslint src --ext .ts",
"lint:fix": "eslint src --ext .ts --fix",
"prettier": "prettier --write **/*.{ts,js,json,yml,yaml}",
"deploy-commands": "npm run build && node dist/deployFunctions/deployCommands.js",
"prepare": "is-ci || husky install"
},
"dependencies": {
"@discordjs/builders": "^0.5.0",
"@discordjs/rest": "^0.1.0-canary.0",
"@naval-base/ms": "^3.1.0",
"@types/cron": "^1.7.3",
"cron": "^1.8.2",
"dayjs": "^1.10.7",
"discord-api-types": "^0.23.0-next.8fcd0f2.1628685220",
"discord.js": "^13.1.0-dev.1628683680.75b48d8",
"dotenv": "^10.0.0",
"i18next": "^20.3.5",
"i18next-fs-backend": "^1.1.1",
"ioredis": "^4.27.2",
"luxon": "^1.26.0",
"node-fetch": "^2.6.1",
"pino": "^6.11.3",
"ws": "^8.4.2",
"yaml": "^1.10.2"
},
"devDependencies": {
"@commitlint/cli": "^9.1.2",
"@commitlint/config-angular": "^9.1.2",
"@types/i18next-fs-backend": "^1.0.1",
"@types/ioredis": "^4.26.3",
"@types/luxon": "^1.26.2",
"@types/node": "^14.6.4",
"@types/node-fetch": "^2.5.8",
"@types/pino": "^6.3.8",
"@typescript-eslint/eslint-plugin": "^3.10.1",
"@typescript-eslint/parser": "^3.10.1",
"eslint": "^7.7.0",
"eslint-config-marine": "^9.0.6",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-tsdoc": "^0.2.14",
"husky": "^7.0.1",
"lint-staged": "^10.5.4",
"prettier": "^2.1.1",
"rimraf": "^3.0.2",
"typescript": "^4.3.5"
},
"engines": {
"node": ">=16.6.0"
}
}