forked from wise-old-man/wiseoldman-discord-bot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
64 lines (64 loc) · 1.73 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": "discord-bot",
"version": "1.0.0",
"description": "A Discord bot for the Wise Old Man projects (https://github.com/wise-old-man/wise-old-man/)",
"main": "index.js",
"scripts": {
"build": "tsc -p .",
"lint": "eslint . --ext .ts",
"prestart": "sequelize db:migrate",
"start": "pm2-runtime dist/index.js",
"predev": "npm run build && sequelize db:migrate",
"dev": "nodemon -L --exec ts-node src/index.ts",
"migration:generate": "cross-env MIGRATING=false npx sequelize-cli migration:generate --name "
},
"keywords": [
"discord",
"bot",
"osrs",
"runescape",
"oldschool",
"wiseoldman",
"wise-old-man"
],
"author": "Psikoi",
"license": "ISC",
"devDependencies": {
"@types/axios": "^0.14.0",
"@types/cors": "^2.8.6",
"@types/express": "^4.17.6",
"@types/lodash": "^4.14.155",
"@types/node": "^14.0.13",
"@typescript-eslint/eslint-plugin": "^3.2.0",
"@typescript-eslint/parser": "^3.2.0",
"eslint": "^7.2.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-prettier": "^3.1.3",
"nodemon": "^2.0.4",
"prettier": "^2.0.5",
"sequelize-cli": "^5.5.1",
"ts-node": "^8.10.2",
"typescript": "^3.9.5"
},
"dependencies": {
"@types/bluebird": "^3.5.32",
"@types/validator": "^13.0.0",
"axios": "^0.19.2",
"canvas": "^2.6.1",
"cors": "^2.8.5",
"cross-env": "^7.0.2",
"discord-paginationembed": "^2.0.0-beta.4",
"discord.js": "^12.2.0",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"lodash": "^4.17.19",
"moment": "^2.26.0",
"pg": "^8.2.1",
"reflect-metadata": "^0.1.13",
"sequelize": "^5.21.13",
"sequelize-typescript": "^1.1.0"
},
"engines": {
"node": ">=12.0"
}
}