-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
73 lines (73 loc) · 1.96 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
{
"name": "tunnel-quest-bot",
"version": "1.1.4",
"description": "",
"main": "index.js",
"scripts": {
"build": "tsc",
"start": "npx prisma generate && npx prisma migrate deploy && node ./build/index.js",
"debug": "npx prisma generate && npx prisma migrate deploy && node --inspect=0.0.0.0 ./build/index.js",
"prepare": "husky install",
"lint": "eslint .",
"lint:fix": "eslint --fix .",
"format": "prettier --write \"./**/*.ts\"",
"dev": "concurrently \"npm run fakeLogs\" \"npm run debug\"",
"fakeLogs": "node ./build/lib/parser/logFaker.js",
"clean": "rd /s /q .\\build"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.ts": [
"prettier --write \"./**/*.ts\"",
"eslint --fix ."
]
},
"keywords": [],
"author": "jamesjamail",
"license": "ISC",
"dependencies": {
"@discordjs/rest": "^2.0.1",
"@prisma/client": "^5.1.1",
"@types/node": "^20.8.0",
"@types/tail": "^2.2.1",
"ahocorasick": "^1.0.2",
"axios": "^1.5.1",
"chalk": "^4.1.2",
"concurrently": "^8.2.1",
"date-fns": "^2.30.0",
"discord.js": "14.15.3",
"dotenv": "^16.0.2",
"fuse.js": "^6.6.2",
"ioredis": "^5.3.2",
"node-fetch": "^2.7.0",
"node-forge": "^1.3.1",
"tail": "^2.2.6"
},
"devDependencies": {
"@types/node-fetch": "^2.6.6",
"@types/node-forge": "^1.3.7",
"@typescript-eslint/eslint-plugin": "^6.6.0",
"eslint": "^8.48.0",
"eslint-config-prettier": "^9.0.0",
"eslint-config-standard-with-typescript": "^39.0.0",
"eslint-plugin-import": "^2.28.1",
"eslint-plugin-n": "^16.0.2",
"eslint-plugin-prettier": "^5.0.0",
"eslint-plugin-promise": "^6.1.1",
"husky": "^8.0.0",
"lint-staged": "^14.0.1",
"prettier": "^3.0.3",
"prisma": "^5.4.2",
"typescript": "^5.2.2"
},
"overrides": {
"discord-api-types": "0.37.20"
},
"prisma": {
"schema": "./src/prisma/schema.prisma"
}
}