-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
64 lines (64 loc) · 1.95 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": "payload-rewrite",
"version": "0.0.1",
"description": "The open-source rewrite for the popular TF2 Discord bot.",
"main": "./dist/src/index.js",
"scripts": {
"start-pm2": "pm2 start dist/src/index.js --name payload",
"update": "git pull && npm run build && pm2 restart payload-dev --update-env",
"start": "node ./dist/src/index.js",
"debug": "ts-node -P tsconfig.json ./src/index.ts",
"test": "mocha --exit --require ts-node/register \"test/**/*.ts\"",
"build": "tsc --build tsconfig.json; ts-node buildscripts/copy-static-assets.ts && ts-node buildscripts/copy-changelog.ts"
},
"author": "Juan de Urtubey",
"license": "MIT",
"dependencies": {
"@google-cloud/translate": "^4.1.1",
"aws-sdk": "^2.437.0",
"canvas": "^2.4.1",
"cheerio": "^1.0.0-rc.2",
"discord.js": "^11.4.2",
"dotenv": "^6.2.0",
"express": "^4.16.4",
"ffmpeg": "0.0.4",
"ffmpeg-binaries": "^4.0.0",
"form-data": "^2.3.3",
"got": "^9.6.0",
"html-to-text": "^4.0.0",
"image-to-base64": "^2.0.1",
"moment": "^2.24.0",
"mongoose": "^5.4.14",
"node-opus": "^0.3.1",
"puppeteer": "^1.18.1",
"sourcequery": "0.0.2",
"srcds-rcon": "^2.2.1",
"steamid": "^1.1.0",
"text-table": "^0.2.0",
"xml2js": "^0.4.19",
"youtube-search": "^1.1.4",
"ytdl-core": "^0.29.1"
},
"devDependencies": {
"@types/aws-sdk": "^2.7.0",
"@types/chai": "^4.1.7",
"@types/cheerio": "^0.22.10",
"@types/dotenv": "^6.1.0",
"@types/express": "^4.16.1",
"@types/form-data": "^2.2.1",
"@types/got": "^9.4.0",
"@types/html-to-text": "^1.4.31",
"@types/mocha": "^5.2.5",
"@types/mongoose": "^5.3.17",
"@types/puppeteer": "^1.12.1",
"@types/steamid": "^1.1.0",
"@types/text-table": "^0.2.0",
"@types/xml2js": "^0.4.3",
"chai": "^4.2.0",
"i": "^0.3.6",
"mocha": "^5.2.0",
"npm": "^6.10.0",
"ts-node": "^8.0.2",
"typescript": "^3.3.3"
}
}