-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
41 lines (41 loc) · 1017 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
36
37
38
39
40
41
{
"name": "sherpabot",
"version": "0.1.2",
"description": "A Discord 'bot to help guide members of the Chingu Community",
"main": "server.js",
"directories": {
"doc": "docs"
},
"repository": {
"type": "git",
"url": "git+https://github.com/chingu-x/sherpabot.git"
},
"keywords": [
"discord",
"express"
],
"author": "Jim D. Medlock",
"license": "MIT",
"bugs": {
"url": "https://github.com/chingu-x/sherpabot/issues"
},
"homepage": "https://github.com/chingu-x/sherpabot#readme",
"scripts": {
"build": "",
"start": "node server.js",
"startdev": "NODE_ENV=development node server.js",
"test": "./node_modules/.bin/jest --runInBand --coverage --detectOpenHandles --verbose"
},
"dependencies": {
"body-parser": "^1.20.1",
"city-timezones": "^1.2.1",
"discord.js": "^14.7.1",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"nodemon": "^2.0.20"
},
"devDependencies": {
"jest": "^29.3.1",
"jest-cli": "^29.3.1"
}
}