-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.22 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
{
"name": "discord-kicker-bot",
"version": "1.0.0",
"description": "Kicker bot",
"main": "dist/app.js",
"repository": "https://github.com/observation-point/kicker-bot",
"author": "deziev",
"license": "MIT",
"private": true,
"scripts": {
"start": "bin/environment node dist/app.js | pino-pretty -t -c",
"start-dev": "bin/environment node_modules/.bin/nodemon dist/app.js | pino-pretty -t -c",
"compile": "rm -rf dist && ./node_modules/.bin/tsc",
"compile-dev": "rm -rf dist && ./node_modules/.bin/tsc --watch",
"tslint": "./node_modules/.bin/tslint 'src/**/*.ts'",
"deploy": "pm2 deploy ecosystem.json prod"
},
"dependencies": {
"@types/minimist": "^1.2.0",
"@types/node": "10.5.3",
"@types/pino": "5.8.1",
"@types/prettyjson": "0.0.28",
"axios": "0.18.1",
"discord.js": "11.3.2",
"minimist": "1.2.0",
"pino": "5.8.0",
"prettyjson": "1.2.1",
"redis": "2.8.0",
"reflect-metadata": "^0.1.12",
"routing-controllers": "0.7.7",
"source-map-support": "0.5.6",
"tslint-config-airbnb": "5.11.1",
"typescript": "2.9.1"
},
"devDependencies": {
"nodemon": "1.18.3",
"pino-pretty": "2.6.0",
"pm2": "^3.5.1",
"tslint": "5.11.0"
}
}