-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
60 lines (60 loc) · 1.64 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": "2pg",
"version": "1.0.0",
"description": "Good bot",
"main": "bot.ts",
"scripts": {
"test": "npm run test:u && npm run test:i",
"test:i": "ts-mocha test/integration/*.tests.ts",
"test:u": "ts-mocha test/unit/*.tests.ts",
"start": "npm run start:bot",
"start:bot": "ts-node src/bot.ts",
"start:dev": "npm run start:music | ts-node-dev bot.ts",
"start:music": "cd dist/lavalink && java -jar Lavalink.jar",
"start:prod": "npm run start:music | ts-node src/bot.ts"
},
"engines": {
"node": "12.x",
"npm": "6.x"
},
"keywords": [],
"author": "ADAMJR#0001",
"license": "ISC",
"dependencies": {
"@anonymousg/lavajs": "^3.4.2",
"@lykmapipo/rate-limit-mongoose": "^0.1.32",
"body-parser": "^1.19.0",
"canvas": "^2.6.1",
"cors": "^2.8.5",
"disco-oauth": "^4.2.7",
"discord.js": "^12.0.2",
"erela.js": "^1.1.7",
"express": "^4.17.1",
"express-rate-limit": "^5.1.3",
"mongoose": "^5.9.3",
"node-fetch": "^2.6.0",
"nodemon": "^2.0.3",
"nyc": "^15.1.0",
"stripe": "^8.39.1",
"typescript": "^3.8.3"
},
"devDependencies": {
"@types/chai": "^4.2.10",
"@types/chai-as-promised": "^7.1.2",
"@types/cors": "^2.8.6",
"@types/express": "^4.17.7",
"@types/express-rate-limit": "^5.0.0",
"@types/mocha": "^7.0.2",
"@types/mongoose": "^5.7.3",
"@types/supertest": "^2.0.8",
"@types/ws": "^7.2.2",
"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": "^8.10.2",
"ts-node-dev": "^1.0.0-pre.56"
}
}