-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
35 lines (35 loc) · 952 Bytes
/
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
{
"name": "discord-bot",
"version": "1.0.0",
"description": "Testing out discord bot commands",
"main": "src/index.js",
"scripts": {
"start": "node src/index.js",
"test": "mocha test/**/*.js",
"lint": "eslint --ext .js,.ts .",
"lint:fix": "eslint --ext .js,.ts --fix ."
},
"author": "Dylan Stankievech",
"license": "ISC",
"dependencies": {
"axios": "^0.27.2",
"chrono-node": "^2.1.4",
"discord.js": "^13.8.0",
"dotenv": "^16.0.1",
"moment": "^2.29.4",
"uuid": "^8.2.0"
},
"devDependencies": {
"chai": "^4.2.0",
"chance": "^1.1.6",
"eslint": "^8.18.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-chai-friendly": "^0.7.2",
"eslint-plugin-import": "2.26.0",
"eslint-plugin-promise": "^6.0.0",
"eslint-plugin-unicorn": "^42.0.0",
"mocha": "^10.0.0",
"nyc": "^15.1.0"
},
"packageManager": "[email protected]"
}