forked from Machine-Maker/AdventureBot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.23 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
{
"name": "adventurebot",
"version": "0.0.1",
"description": "A CYOA for Last Oasis made by the community",
"main": "bot.js",
"author": "Machine_Maker",
"license": "MIT",
"scripts": {
"dev": "ENVIRONMENT=dev nodemon bot.js",
"start": "node --no-deprecation bot.js",
"lint": "eslint --ext .js --ignore-path .gitignore ."
},
"dependencies": {
"chalk": "^2.4.2",
"discord.js": "^11.5.1",
"discord.js-commando": "^0.10.0",
"dotenv": "^8.1.0",
"json5": "^2.1.1",
"lodash": "^4.17.15",
"moment": "^2.24.0",
"sqlite3": "^4.1.0"
},
"devDependencies": {
"babel-eslint": "^10.0.3",
"eslint": "^6.4.0",
"eslint-config-prettier": "^6.3.0",
"eslint-config-standard": "^14.1.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-node": "^10.0.0",
"eslint-plugin-prettier": "^3.1.1",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"nodemon": "^1.19.2",
"prettier": "^1.18.2"
},
"nodemonConfig": {
"ignore": [
"db/*",
"node_modules/*",
"/adventures/*"
],
"execMap": {
"js": "node --no-deprecation"
}
},
"prettier": {
"semi": false,
"singleQuote": true,
"printWidth": 100
}
}