-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
35 lines (35 loc) · 934 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": "fbf-buddy",
"private": true,
"version": "1.2.1",
"description": "Cycling event app for Discord",
"main": "app.js",
"engines": {
"node": ">=20.x"
},
"scripts": {
"start": "NODE_ENV=production node src/app.js",
"register": "node src/commands.js",
"dev": "nodemon src/app.js",
"lint": "eslint src/**/*.js"
},
"author": "Peter Cort",
"license": "MIT",
"dependencies": {
"@sequelize/postgres": "^7.0.0-alpha.43",
"axios": "^1.7.9",
"discord-interactions": "^4.0.0",
"discord.js": "^14.16.3",
"dotenv": "^16.4.7",
"express": "^4.18.2",
"fbf-event-buddy": "file:",
"sequelize": "^6.37.5",
"sqlite3": "^5.1.7"
},
"devDependencies": {
"@eslint/js": "^9.17.0",
"eslint": "^9.17.0",
"globals": "^15.14.0",
"nodemon": "^3.1.9"
}
}