-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.32 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.32 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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
{
"name": "gratoms",
"version": "1.0.0",
"description": "payment/earn",
"main": "app.js",
"scripts": {
"dev": "nodemon ./server/app.js",
"start": "node ./server/app.js",
"build": "npm install",
"db:create": "sequelize db:create",
"db:migrate": "sequelize db:migrate",
"db:seed": "sequelize db:seed:all",
"db:reset": "sequelize db:migrate:undo:all && sequelize db:migrate && sequelize db:seed:all"
},
"engines": {
"node": ">=20.19.5",
"npm": ">=10.8.2"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Sidescripts/gratoms.git"
},
"author": "duby",
"license": "ISC",
"bugs": {
"url": "https://github.com/Sidescripts/gratoms/issues"
},
"homepage": "https://github.com/Sidescripts/gratoms#readme",
"dependencies": {
"@sendgrid/mail": "^8.1.5",
"axios": "^1.11.0",
"bcrypt": "^6.0.0",
"bcryptjs": "^3.0.2",
"body-parser": "^2.2.0",
"cors": "^2.8.5",
"dotenv": "^17.2.1",
"express": "^5.1.0",
"express-validator": "^7.2.1",
"helmet": "^8.1.0",
"jsonwebtoken": "^9.0.2",
"morgan": "^1.10.1",
"mysql2": "^3.14.3",
"node-cron": "^4.2.1",
"nodemailer": "^7.0.5",
"nodemon": "^3.1.10",
"sequelize": "^6.37.7",
"sequelize-cli": "^6.6.3",
"uuid": "^11.1.0",
"winston": "^3.17.0"
}
}