-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 904 Bytes
/
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
{
"name": "usc-discord-bot",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"dev": "npm run build && node dist/index.js",
"build": "rimraf dist && tsc",
"start": "npm run build && pm2 start dist/index.js --name 'USC Bot'",
"stop": "pm2 stop 'USC Bot'"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"axios": "^0.21.1",
"discord.js": "^13.1.0",
"express": "^4.17.1",
"mongodb": "^4.1.0"
},
"devDependencies": {
"@types/express": "^4.17.13",
"@types/node": "^16.4.13",
"@typescript-eslint/eslint-plugin": "^4.29.0",
"@typescript-eslint/parser": "^4.29.0",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^3.4.0",
"prettier": "^2.3.2",
"rimraf": "^3.0.2",
"typescript": "^4.3.5"
},
"engines": {
"node": ">=16.6.1"
}
}