-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1.24 KB
/
package.json
File metadata and controls
38 lines (38 loc) · 1.24 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
{
"name": "mod",
"version": "0.8.0",
"description": "mud on discord",
"main": "./DiscordBot/index.js",
"engines": {
"node": " >=12"
},
"dependencies": {
"discord.js": "^12.0.2",
"discord.js-commando": "discordjs/Commando#master",
"eslint": "^6.7.2"
},
"devDependencies": {
"aws-sdk": "^2.373.0",
"nodemon": "^2.0.2",
"serverless": "^1.59.3",
"serverless-dynamodb-local": "^0.2.35"
},
"scripts": {
"start": "nodemon --max-old-space-size=2048 ./DiscordBot/index.js",
"seed": "./node_modules/serverless/bin/serverless dynamodb seed",
"startDb": "./node_modules/serverless/bin/serverless dynamodb start",
"createDb": "./node_modules/serverless/bin/serverless dynamodb install; ./node_modules/serverless/bin/serverless dynamodb start --migrate --seed",
"test": "nodemon --prof --max-old-space-size=2048 ./DiscordBot/index.js",
"eslint": "./node_modules/.bin/eslint --ext ./DiscordBot/*.js ./DiscordBot/commands/**/*.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/JohnnySn0w/MoD.git"
},
"author": "",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/JohnnySn0w/MoD/issues"
},
"homepage": "https://github.com/JohnnySn0w/MoD#readme"
}