This repository has been archived by the owner on May 31, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
81 lines (81 loc) · 2.03 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
74
75
76
77
78
79
80
81
{
"name": "ricebot",
"version": "1.0.0",
"main": "./src/index.js",
"license": "MIT",
"private": true,
"scripts": {
"dev": "nodemon index.ts",
"test": "ava-ts --timeout=2m",
"start": "env NODE_ENV=production nodemon index.ts"
},
"engines": {
"node": "13.10.1"
},
"dependencies": {
"@babel/preset-typescript": "^7.9.0",
"@discordjs/opus": "^0.2.1",
"@types/dotenv": "^8.2.0",
"@types/lodash": "^4.14.150",
"@types/mongodb": "^3.5.8",
"@types/mongoose": "^5.7.12",
"@types/node": "^13.11.1",
"@types/node-fetch": "^2.5.7",
"ava": "^3.8.2",
"ava-ts": "^0.25.2",
"cachegoose": "^8.0.0",
"chalk": "^4.0.0",
"cors": "^2.8.5",
"discord.js": "^12.1.1",
"dotenv": "^8.2.0",
"ejs": "^3.1.3",
"enmap": "^5.3.1",
"express": "^4.17.1",
"express-session": "^1.17.1",
"fs-nextra": "^0.5.1",
"moment": "^2.24.0",
"mongodb": "^3.5.6",
"mongoose": "^5.9.10",
"node-fetch": "^2.6.0",
"nodemon": "^2.0.3",
"passport": "^0.4.1",
"passport-discord": "^0.1.4",
"promise-each": "^2.2.0",
"simple-youtube-api": "^5.2.1",
"ts-node": "^8.8.2",
"typescript": "^3.8.3",
"youtube-search": "^1.1.4",
"ytdl-core-discord": "^1.2.0"
},
"devDependencies": {
"@ava/typescript": "^1.1.1",
"@babel/core": "^7.9.0",
"@babel/preset-env": "^7.10.4",
"@babel/register": "^7.9.0",
"@types/express": "^4.17.6",
"@types/express-session": "^1.17.0",
"@types/jest": "^26.0.3",
"@types/passport": "^1.0.3",
"@typescript-eslint/eslint-plugin": "^3.4.0",
"@typescript-eslint/parser": "^3.4.0",
"babel-eslint": "^10.1.0",
"babel-plugin-dynamic-import-node": "^2.3.3",
"eslint": "^7.3.1",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-prettier": "^3.1.4",
"jest": "^25.4.0",
"lodash": "^4.17.15",
"node-pre-gyp": "^0.15.0",
"ts-jest": "^25.4.0"
},
"ava": {
"files": [
"test/**/*.ts"
],
"typescript": {
"extensions": [
"ts"
]
}
}
}