-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.43 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
{
"name": "strago",
"version": "1.0.0",
"description": "Bot for performing fun functions in Blue Academy.",
"main": "index.js",
"scripts": {
"build": "tsc",
"clean": "rimraf ./dist",
"start:dev": "tsc-watch -p ./tsconfig.dev.json --onSuccess \"node --enable-source-maps -r dotenv/config ./dist/index.js dotenv_config_path=.env.dev\"",
"start:prod": "npm run clean && tsc-watch --onSuccess \"node -r dotenv/config ./dist/index.js dotenv_config_path=.env.prod\""
},
"keywords": [],
"author": "Liam Galt",
"license": "ISC",
"dependencies": {
"@discordjs/rest": "^2.0.0",
"@supercharge/promise-pool": "^3.0.0",
"@xivapi/js": "^0.4.2",
"@xivapi/nodestone": "^0.2.5",
"axios": "^1.4.0",
"copyfiles": "^2.4.1",
"cron": "^2.4.1",
"discord.js": "^14.12.1",
"dotenv": "^16.3.1",
"mongoose": "^7.6.9",
"ts-node": "^10.9.1",
"winston": "^3.10.0",
"winston-loki": "^6.0.7",
"winston-transport": "^4.5.0"
},
"devDependencies": {
"@types/node": "^20.4.7",
"@typescript-eslint/eslint-plugin": "^5.62.0",
"@typescript-eslint/parser": "^5.62.0",
"eslint": "^8.47.0",
"eslint-config-prettier": "^9.0.0",
"eslint-import-resolver-typescript": "^3.6.0",
"eslint-plugin-import": "^2.28.1",
"eslint-plugin-prettier": "^5.0.0",
"nodemon": "^3.0.1",
"prettier": "^3.0.2",
"rimraf": "^5.0.1",
"tsc-watch": "^6.0.4",
"typescript": "^5.1.6"
}
}