-
-
Notifications
You must be signed in to change notification settings - Fork 18
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 798 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 798 Bytes
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
{
"name": "rpgdiscord",
"version": "1.0.0",
"description": "rpg game for the discord platform",
"main": "index.js",
"scripts": {
"debug": "nodemon --inspect index.js",
"dev": "nodemon index.js",
"postinstall": "sh postinstall.sh",
"start": "node index.js",
"test": "export NODE_ENV=test && nyc mocha --exit './test/**/*.test.js'"
},
"author": "Tormod & Markus",
"license": "ISC",
"dependencies": {
"axios": "^0.21.2",
"canvas": "^2.6.1",
"chai": "^4.2.0",
"dblapi.js": "^2.4.0",
"discord.js": "^12.2.0",
"dotenv": "^8.2.0",
"eslint": "^7.1.0",
"istanbul": "^0.4.5",
"mongoose": "^5.13.4",
"nyc": "^15.1.0",
"qs": "^6.9.4"
},
"devDependencies": {
"mocha": "^7.2.0"
},
"engines": {
"node": "^14"
}
}