-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 904 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 904 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
{
"name": "discord-bot",
"version": "1.0.0",
"description": "Official DataRes Discord bot",
"main": "index.js",
"scripts": {
"start": "cross-env NODE_ENV=development nodemon src/index.js",
"start-prod": "cross-env NODE_ENV=production node src/index.js",
"test": "jest --forceExit --silent --collect-coverage",
"lint": "eslint src",
"format:check": "prettier --check .",
"format:write": "prettier --write ."
},
"author": "",
"license": "ISC",
"dependencies": {
"aws-sdk": "^2.1277.0",
"discord.js": "^14.5.0",
"dotenv": "^16.0.3",
"google-spreadsheet": "^3.3.0",
"mongodb": "^4.13.0",
"nedb": "^1.8.0"
},
"devDependencies": {
"@shelf/jest-mongodb": "^4.1.4",
"cross-env": "^7.0.3",
"eslint": "^8.24.0",
"eslint-config-prettier": "^8.6.0",
"jest": "^29.3.1",
"nodemon": "^2.0.20",
"prettier": "^2.8.3"
}
}