-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 1.11 KB
/
Copy pathpackage.json
File metadata and controls
30 lines (30 loc) · 1.11 KB
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
{
"name": "cesi_bot",
"version": "1.0.0",
"description": "Un bot discord pour gérér les présences des RIL au CESI du Mans",
"main": "index.js",
"scripts": {
"start": "node .",
"test": "echo \"Error: no test specified\" && exit 1",
"db:init_prod": "npx sequelize-cli db:create --env=production && npx sequelize-cli db:migrate --env=production && npx sequelize-cli db:seed:all --env=production",
"db:init_dev": "npx sequelize-cli db:create --env=development && npx sequelize-cli db:migrate --env=development && npx sequelize-cli db:seed:all --env=development",
"db:makemigrations": "makemigration"
},
"author": "Alexis POUPELIN, Justin BAHIER",
"license": "ISC",
"dependencies": {
"app-root-path": "^3.0.0",
"bull": "^3.16.0",
"cron-parser": "^2.15.0",
"cross-env": "^7.0.2",
"discord.js": "^12.2.0",
"moment": "^2.27.0",
"mysql2": "^2.1.0",
"sequelize": "^5.21.13",
"sequelize-auto-migrations": "github:scimonster/sequelize-auto-migrations#a063aa6535a3f580623581bf866cef2d609531ba",
"sqlite3": "^4.2.0"
},
"devDependencies": {
"eslint": "^7.2.0"
}
}