This repository has been archived by the owner on Mar 1, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
53 lines (53 loc) · 1.5 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
{
"name": "munchcord-bot",
"version": "1.0.0",
"description": "The MunchCord Bot aims to be a multipurpose bot that can add Ordinal/Inscription functionality to any discord server.",
"main": "index.js",
"scripts": {
"test": "NODE_ENV=test nyc mocha",
"coverage": "nyc report --reporter=html",
"dev": "node deploy-commands && node .",
"deploy": "node deploy-commands",
"start": "node .",
"start:local": "NODE_ENV=local node .",
"lint": "./node_modules/.bin/eslint \"./**/*.js\" --fix",
"prettier": "prettier --write ."
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"axios": "^1.3.4",
"body-parser": "^1.20.2",
"change-case": "^4.1.2",
"comma-number": "^2.1.0",
"cors": "^2.8.5",
"discord.js": "^14.8.0",
"dotenv-flow": "^3.2.0",
"express": "^4.18.2",
"i": "^0.3.7",
"jsonwebtoken": "^9.0.0",
"mysql2": "^3.2.0",
"npm": "^9.6.4",
"random-words": "^1.3.0",
"rewire": "^6.0.0",
"sequelize": "^6.29.3",
"sqlite3": "^5.1.6"
},
"devDependencies": {
"chai": "^4.3.7",
"chai-as-promised": "^7.1.1",
"chai-http": "^4.3.0",
"eslint": "^8.36.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^8.8.0",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-n": "^15.6.1",
"eslint-plugin-promise": "^6.1.1",
"mocha": "^10.2.0",
"nyc": "^15.1.0",
"prettier": "^2.8.7",
"sinon": "^15.0.3"
}
}