-
Notifications
You must be signed in to change notification settings - Fork 90
/
Copy pathpackage.json
57 lines (57 loc) · 1.44 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
{
"name": "2pg",
"version": "1.0.0",
"description": "Good bot",
"main": "bot.js",
"scripts": {
"test": "ts-mocha tests/**/*.tests.ts",
"test:u": "ts-mocha tests/unit/**/*.tests.ts",
"test:i": "ts-mocha tests/integration/**/*.tests.ts",
"start": "ts-node src/app.ts",
"dev": "ts-node-dev src/app.ts"
},
"engines": {
"node": "12.0.x"
},
"keywords": [],
"author": "ADAMJR#0001",
"license": "ISC",
"dependencies": {
"@2pg/music": "^1.1.2",
"@2pg/oauth": "^1.0.6",
"@discordjs/opus": "^0.4.0",
"@types/axios": "^0.14.0",
"@types/chai": "^4.2.10",
"@types/chai-as-promised": "^7.1.2",
"@types/crypto-js": "^4.0.1",
"@types/express": "^4.17.9",
"@types/mocha": "^7.0.2",
"@types/mongoose": "^5.7.3",
"@types/node": "^12.0.0",
"@types/supertest": "^2.0.8",
"@types/ws": "^7.2.2",
"body-parser": "^1.19.0",
"canvas": "^2.7.0",
"cors": "^2.8.5",
"crypto-js": "^4.0.0",
"discord.js": "^12.0.2",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"express-rate-limit": "^5.2.3",
"mongoose": "^5.9.3",
"node-fetch": "^2.6.1",
"nodemon": "^2.0.3",
"rate-limit-mongo": "^2.3.0",
"ts-node": "^8.10.1",
"typescript": "^3.8.3"
},
"devDependencies": {
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"mocha": "^7.1.2",
"supertest": "^4.0.2",
"ts-mocha": "^6.0.0",
"ts-mockito": "^2.5.0",
"ts-node-dev": "^1.0.0"
}
}