-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
115 lines (115 loc) · 3.93 KB
/
Copy pathpackage.json
File metadata and controls
115 lines (115 loc) · 3.93 KB
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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
{
"name": "valbot",
"version": "1.0.0",
"description": "A bot for valarium server!",
"main": "./prod/index.js",
"repository": "git@github.com:KL13NT/valbot.git",
"author": "KL13NT <Nabil.tharwat@outlook.com>",
"license": "GPL-3.0-only",
"scripts": {
"dev": "ts-node-dev --transpile-only -r tsconfig-paths/register -r dotenv/config src/index.ts dotenv_config_path=./.env.dev --clear --rs ",
"start": "ts-node-dev --transpile-only -r tsconfig-paths/register -r dotenv/config src/index.ts dotenv_config_path=./.env.prod --clear --rs ",
"build": "tsc",
"commands:dev": "ts-node --transpileOnly -r tsconfig-paths/register -r dotenv/config src/scripts/commands-deploy.ts dotenv_config_path=./.env.dev --clear --rs",
"deps": "run-p develop:mongo develop:redis watch inspect:node",
"tsc": "tsc --noEmit",
"develop:mongo": "mongod --dbpath=data",
"develop:redis": "redis-server",
"lint": "eslint --ext .js,.ts ./src --config .eslintrc.js",
"pretty": "prettier --write \"./**/*.{js,jsx,json}\"",
"test": "jest --colors --expand --logHeapUsage --config jest.config.js --verbose",
"docs": "./node_modules/.bin/jsdoc -c ./jsdoc.json -r ./ -d docs",
"contributors:add": "all-contributors add",
"contributors:generate": "all-contributors generate"
},
"devDependencies": {
"@babel/core": "^7.3.4",
"@babel/plugin-proposal-class-properties": "^7.3.4",
"@babel/plugin-proposal-optional-catch-binding": "^7.2.0",
"@babel/plugin-proposal-pipeline-operator": "^7.5.0",
"@babel/plugin-syntax-dynamic-import": "^7.2.0",
"@babel/plugin-transform-runtime": "^7.5.5",
"@babel/preset-env": "^7.3.4",
"@babel/preset-typescript": "^7.14.5",
"@types/btoa": "^1.2.3",
"@types/hapi__joi": "^17.1.3",
"@types/jest": "^26.0.24",
"@types/lru-cache": "^5.1.1",
"@types/mongodb": "^3.5.25",
"@types/node": "^14.0.14",
"@types/redis": "^2.8.22",
"@types/string-similarity": "^4.0.0",
"@types/triple-beam": "^1.3.2",
"@typescript-eslint/eslint-plugin": "^3.4.0",
"@typescript-eslint/parser": "^3.4.0",
"babel": "^6.23.0",
"babel-cli": "^6.26.0",
"babel-eslint": "^11.0.0-beta.0",
"babel-loader": "^8.0.5",
"clean-jsdoc-theme": "^2.2.11",
"eslint": "^7.16.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-config-prettier": "^7.1.0",
"eslint-config-standard": "^16.0.2",
"eslint-loader": "^2.1.2",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jest": "^24.3.6",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.3.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^5.0.0",
"eslint-plugin-unused-imports": "^2.0.0",
"jest": "^27.0.6",
"jest-extended": "^0.11.5",
"jsdoc": "^3.6.2",
"npm-run-all": "^4.1.5",
"prettier": "^2.0.5",
"tui-jsdoc-template": "^1.2.2"
},
"dependencies": {
"@babel/polyfill": "^7.4.4",
"@discordjs/builders": "^1.3.0",
"@discordjs/opus": "^0.6.0",
"@discordjs/rest": "^1.3.0",
"@discordjs/util": "^0.1.0",
"@discordjs/voice": "^0.13.0",
"@hapi/joi": "^17.1.1",
"@sentry/node": "^6.13.3",
"@sentry/tracing": "^6.13.3",
"@tensorflow-models/toxicity": "^1.2.2",
"@tensorflow/tfjs": "^1.5.1",
"btoa": "^1.2.1",
"chrono-node": "^2.3.0",
"discord-api-types": "^0.37.17",
"discord.js": "^13.11.0",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"ffmpeg-static": "^5.1.0",
"html-entities": "^2.3.2",
"libsodium-wrappers": "^0.7.10",
"logform": "^2.4.2",
"lru-cache": "^6.0.0",
"lyrics-finder": "^21.7.0",
"mongodb": "^3.2.7",
"node-html-to-image": "^3.1.0",
"nodemon": "^1.19.4",
"pretty-ms": "^7.0.1",
"prism-media": "^1.3.4",
"puppeteer": "19",
"puppeteer-cluster": "^0.22.0",
"redis": "4.3.1",
"string-progressbar": "^1.0.4",
"string-similarity": "^4.0.4",
"triple-beam": "^1.3.0",
"ts-node-dev": "^2.0.0",
"typescript": "^4.3.5",
"winston": "3.8.2",
"winston-transport": "^4.4.0",
"winston-transport-sentry-node": "^2.0.0",
"ytdl-core": "^4.9.1",
"ytdl-core-discord": "^1.3.1"
},
"engines": {
"node": "16.x"
}
}