-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 932 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
{
"name": "botdiscord",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "node src/index.js",
"start-dev": "nodemon src/index.js",
"test": "echo \"Error: no test specified\" && exit 1",
"db:status": "sequelize db:migrate:status",
"db:drop": "sequelize db:migrate:undo:all",
"db:migrate": "sequelize db:migrate",
"db:reset": "yarn db:drop && yarn db:migrate && yarn db:seed",
"db:seed": "sequelize db:seed:all"
},
"keywords": [],
"author": "Gotha",
"license": "ISC",
"dependencies": {
"axios": "^0.21.1",
"date-fns": "^2.23.0",
"discord.js": "^12.5.3",
"dotenv": "^8.2.0",
"fs": "0.0.1-security",
"mysql2": "^2.2.5",
"node-cron": "^3.0.0",
"path": "^0.12.7",
"pm2": "^4.2.3",
"qs": "^6.10.1",
"sequelize": "^6.6.5"
},
"devDependencies": {
"nodemon": "^1.19.1",
"sequelize-cli": "^6.2.0"
}
}