forked from fsr5-fhaachen/discordbot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
60 lines (60 loc) · 2.05 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
{
"name": "discordbot",
"version": "1.0.0",
"description": "",
"main": "dist/index.js",
"scripts": {
"build": "babel src --out-dir dist --extensions \".ts,.tsx\" --source-maps inline --copy-files",
"build:dev": "nodemon --watch src --ext ts --exec \"npm run eslint && npm run build\"",
"build:development": "npm run build:dev",
"start": "node -r dotenv/config dist/index",
"start:dc": "npm run start:deployCommands",
"start:deployCommands": "node -r dotenv/config dist/deployCommands",
"start:watch": "nodemon -r dotenv/config dist/index",
"eslint": "npx eslint 'src/**.ts'",
"buildAndStart": "npm run eslint && npm run build && npm run start"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@discordjs/builders": "^0.6.0",
"@discordjs/rest": "^0.1.0-canary.0",
"@keyv/redis": "^2.1.2",
"discord-api-types": "^0.23.0",
"discord.js": "^13.1.0",
"dotenv": "^10.0.0",
"env-var": "^7.0.1",
"i18n": "^0.13.2",
"keyv": "^4.0.3",
"mongoose": "^5.12.7",
"tslib": "^2.2.0",
"winston": "^3.3.3",
"winston-transport-sentry-node": "^1.0.2"
},
"devDependencies": {
"@babel/cli": "^7.13.16",
"@babel/core": "^7.14.0",
"@babel/node": "^7.13.13",
"@babel/plugin-proposal-class-properties": "^7.13.0",
"@babel/plugin-proposal-decorators": "^7.13.15",
"@babel/plugin-proposal-object-rest-spread": "^7.13.8",
"@babel/preset-typescript": "^7.13.0",
"@types/i18n": "^0.13.0",
"@types/keyv": "^3.1.1",
"@types/node": "^16.3.0",
"@typescript-eslint/eslint-plugin": "^4.22.0",
"@typescript-eslint/parser": "^4.22.0",
"babel-plugin-module-resolver": "^4.1.0",
"babel-preset-latest-node": "^5.5.1",
"eslint": "^7.25.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-config-airbnb-typescript": "^14.0.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-react": "^7.23.2",
"eslint-plugin-react-hooks": "^4.2.0",
"nodemon": "^2.0.7",
"typescript": "^4.2.4"
}
}