-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 1.09 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
{
"dependencies": {
"app-root-path": "^3.0.0",
"discord-command-parser": "^1.5.3",
"discord.js": "^13.6.0",
"dotenv": "^16.0.1",
"sqlite3": "^5.0.2",
"typeorm": "^0.2.45",
"typescript": "^4.5.5"
},
"devDependencies": {
"@types/app-root-path": "^1.2.4",
"@typescript-eslint/eslint-plugin": "^5.10.1",
"@typescript-eslint/parser": "^5.10.1",
"cross-env": "^7.0.3",
"eslint": "^8.7.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"nodemon": "^2.0.15",
"prettier": "^2.5.1",
"ts-node": "^10.4.0"
},
"name": "bot",
"version": "1.0.0",
"main": "bot.js",
"scripts": {
"start:dev": "nodemon",
"start:prod": "npm run build && cross-env NODE_ENV=production node build/bot.js",
"build": "rimraf ./build && tsc",
"start": "npm run serve",
"serve": "cross-env NODE_ENV=production node build/bot.js",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"pm2": "npm run build && pm2 start npm --name bot -- start",
"pm2:restart": "npm run build && pm2 restart bot"
},
"keywords": [],
"author": "",
"license": "ISC",
"description": ""
}