-
Notifications
You must be signed in to change notification settings - Fork 64
/
package.json
executable file
·64 lines (64 loc) · 1.61 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
{
"name": "@2pg/core",
"version": "0.3.0",
"description": "Simple, powerful, Discord bot.",
"main": "lib/main.js",
"private": false,
"repository": {
"url": "https://github.com/twopg/Bot"
},
"scripts": {
"test": "ts-mocha test/test.ts",
"start": "ts-node src/bot.ts",
"dev": "ts-node-dev src/bot.ts"
},
"engines": {
"node": "12.x",
"npm": "6.x"
},
"keywords": [],
"author": "ADAMJR",
"license": "ISC",
"dependencies": {
"@2pg/music": "^1.1.7",
"@2pg/oauth": "^1.0.8",
"@dbots/stats": "^1.0.1",
"@types/cors": "^2.8.6",
"@types/express": "^4.17.7",
"@types/express-rate-limit": "^5.0.0",
"@types/mongoose": "^5.7.3",
"@types/node-fetch": "^2.5.7",
"@types/paypal-rest-sdk": "^1.7.5",
"@types/shelljs": "^0.8.8",
"@types/ws": "^7.2.2",
"body-parser": "^1.19.0",
"canvacord": "^5.0.8",
"colors": "^1.4.0",
"cors": "^2.8.5",
"discord.js": "^12.0.2",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"express-rate-limit": "^5.1.3",
"mongoose": "^5.9.3",
"node-fetch": "^2.6.1",
"paypal-rest-sdk": "^1.8.1",
"rate-limit-mongo": "^2.3.0",
"ts-node": "^8.10.2",
"typescript": "^4.0.5"
},
"devDependencies": {
"@types/chai": "^4.2.10",
"@types/chai-as-promised": "^7.1.2",
"@types/chai-spies": "^1.0.3",
"@types/mocha": "^7.0.2",
"@types/supertest": "^2.0.8",
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"chai-spies": "^1.0.0",
"mocha": "^7.1.2",
"supertest": "^4.0.2",
"ts-mocha": "^6.0.0",
"ts-mockito": "^2.5.0",
"ts-node-dev": "^1.0.0-pre.56"
}
}