forked from misterkeebs/mkbot
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.22 KB
/
Copy pathpackage.json
File metadata and controls
48 lines (48 loc) · 1.22 KB
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
{
"name": "mkbot",
"version": "1.0.0",
"main": "index.js",
"license": "MIT",
"dependencies": {
"@sendgrid/mail": "^6.4.0",
"aws-sdk": "^2.573.0",
"axios": "^0.19.0",
"canvas": "^2.6.0",
"cheerio": "^1.0.0-rc.3",
"cors": "^2.8.5",
"db-migrate": "^0.11.6",
"db-migrate-pg": "^1.0.0",
"dedent": "^0.7.0",
"discord.js": "^11.5.1",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"express-jwt": "^5.3.1",
"express-jwt-authz": "^2.3.1",
"filenamify": "^4.1.0",
"jimp": "^0.8.5",
"jwks-rsa": "^1.6.0",
"lodash": "^4.17.15",
"mime-types": "^2.1.25",
"morgan": "^1.9.1",
"multer": "^1.4.2",
"multer-s3": "^2.9.0",
"nightmare": "^3.0.2",
"pluralize": "^8.0.0",
"react-copy-to-clipboard": "^5.0.2",
"react-helmet": "^5.2.1",
"slugify": "^1.3.6",
"uuid": "^3.3.3"
},
"devDependencies": {
"chai": "^4.2.0",
"mocha": "^6.2.2",
"nodemon": "^2.0.0"
},
"scripts": {
"test": "mocha --require test/support --recursive test/**/*_test.js",
"test:watch": "mocha -w --require test/support --recursive test/**/*_test.js",
"server": "nodemon server.js",
"bot": "nodemon index.js",
"client": "cd client && yarn start"
}
}