-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
53 lines (53 loc) · 2.02 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
{
"name": "randomdice.gg-bot",
"version": "1.0.0",
"description": "",
"main": "bot.ts",
"scripts": {
"dev": "NODE_ENV=development nodemon --ext 'ts' --exec 'npm run lint && tsc --noEmit && ts-node --require=dotenv/config src/bot.ts --project tsconfig.json'",
"dev:register-slash-commands": "cross-env REGISTER_SLASH_COMMANDS=1 NODE_ENV=development nodemon --ext 'ts' --exec 'npm run lint && tsc --noEmit && ts-node --require=dotenv/config src/bot.ts --project tsconfig.json'",
"start": "NODE_ENV=production ts-node --require=dotenv/config src/bot.ts --project tsconfig.json",
"lint": "eslint src --ext .ts"
},
"engines": {
"node": ">= 16.9"
},
"author": "JackyKit",
"license": "ISC",
"dependencies": {
"@discordjs/voice": "^0.6.0",
"@types/mathjs": "^6.0.11",
"@types/node": "^14.11.2",
"@types/randomstring": "^1.1.6",
"@types/string-similarity": "^3.0.0",
"@types/textversionjs": "^1.1.0",
"axios": "^0.21.1",
"color-parser": "^0.1.0",
"cross-env": "^7.0.3",
"discord.js": "^13.6.0",
"dotenv": "^8.2.0",
"firebase-admin": "^10.0.2",
"html-entities": "^1.3.1",
"mathjs": "^9.4.1",
"moment": "^2.29.1",
"randomstring": "^1.1.5",
"string-similarity": "^4.0.2",
"textversionjs": "^1.1.3",
"ts-node": "^10.5.0",
"tsconfig-paths": "^3.12.0",
"ttypescript": "^1.5.13",
"typescript": "^4.4.3",
"typescript-transform-paths": "^3.3.1"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^4.32.0",
"@typescript-eslint/parser": "^4.32.0",
"eslint": "^7.32.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-config-prettier": "^8.3.0",
"eslint-import-resolver-typescript": "^2.5.0",
"eslint-plugin-prettier": "^4.0.0",
"nodemon": "^2.0.13",
"prettier": "^2.4.1"
}
}