-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.16 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
{
"name": "sneakybot",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"run:dev": "ts-node ./src/main.ts",
"run:build": "node ./dist/main.js",
"build": "tsc --build",
"update:commands": "ts-node ./src/registerCommands.ts"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@hidden-devs/discord-prompts.js": "^1.2.3",
"@types/node": "^20.12.7",
"bad-words-next": "^2.3.1",
"chalk": "^4.1.2",
"cld": "^2.9.1",
"discord.js": "^14.15.2",
"dotenv": "^16.4.5",
"mysql": "^2.18.1",
"pouchdb": "^8.0.1",
"redis": "^4.6.14"
},
"devDependencies": {
"@eslint/eslintrc": "^3.0.2",
"@eslint/js": "^9.0.0",
"@types/jest": "^29.5.12",
"@types/mysql": "^2.15.26",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"eslint": "^8.57.0",
"eslint-config-standard-with-typescript": "^43.0.1",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-n": "^16.6.2",
"eslint-plugin-promise": "^6.1.1",
"globals": "^15.0.0",
"jest": "^29.7.0",
"ts-jest": "^29.1.3",
"typescript": "^5.4.5"
}
}