-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
34 lines (34 loc) · 880 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
{
"name": "speedrun-bot",
"version": "1.0.0",
"description": "Simple discord bot to record speed runs for games",
"main": "index.js",
"type": "module",
"scripts": {
"start": "nodemon src/index.js",
"test": "NODE_OPTIONS=--experimental-vm-modules jest --config ./jest.config.json",
"test:watch": "npm run test -- --watch",
"lint": "eslint ./src"
},
"repository": {
"type": "git",
"url": "[email protected]:adjstreams/speedrun-bot.git"
},
"author": "ADJStreams",
"license": "ISC",
"dependencies": {
"discord.js": "^12.5.3",
"dotenv": "^8.2.0",
"jest": "^26.6.3",
"pg": "^8.5.1",
"pg-hstore": "^2.3.3",
"sequelize": "^6.6.2",
"sqlite3": "^5.0.2"
},
"devDependencies": {
"eslint": "^7.24.0",
"eslint-config-prettier": "^8.1.0",
"prettier": "2.2.1",
"eslint-plugin-jest": "^24.3.4"
}
}