-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
43 lines (43 loc) · 1.07 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
{
"name": "statera-bot",
"version": "1.0.0",
"description": "D&D character progress tracking for westmarches",
"keywords": [
"dnd",
"d&d",
"westmarch",
"rpg",
"progress",
"discord",
"bot",
"character"
],
"type": "module",
"license": "AGPL-3.0",
"repository": "github:a-h-i/progress-bot",
"scripts": {
"start": "NODE_ENV=production node app.js",
"dev": "NODE_ENV=development node app.js",
"test": "NODE_ENV=test mocha test --recursive -r chai/register-should -r chai/register-expect --reporter spec"
},
"contributors": [
{
"name": "Ahmed H. Ismail"
}
],
"dependencies": {
"discord.js": "^12.5.1",
"dotenv": "^8.2.0",
"mathjs": "^8.1.0",
"pg": "^8.5.1",
"pg-hstore": "^2.3.3",
"sequelize": "^6.3.5",
"sequelize-cli": "^6.2.0",
"winston": "^3.3.3"
},
"devDependencies": {
"chai": "^4.2.0",
"eslint": "^7.15.0",
"mocha": "^8.2.1"
}
}