-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
70 lines (70 loc) · 2.22 KB
/
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
{
"name": "smartq-backend",
"version": "1.0.0",
"description": "SmartQ is changing how we wait in line. It makes appointments easy and stress-free, using smart technology to improve services for everyone in Pakistan.",
"main": "server.js",
"scripts": {
"dev": "nodemon .",
"start": "node .",
"test": "jest",
"build": "babel src --out-dir public",
"migrate:up": "npx sequelize-cli db:migrate --config ./src/config/config.json --migrations-path ./src/migrations",
"migrate:undo": "npx sequelize-cli db:migrate:undo --config ./src/config/config.json --migrations-path ./src/migrations",
"migrate:undo:all": "npx sequelize-cli db:migrate:undo:all --config ./src/config/config.json --migrations-path ./src/migrations",
"seed:all": "npx sequelize-cli db:seed:all --config ./src/config/config.json",
"seed:undo": "npx sequelize-cli db:seed:undo --config ./src/config/config.json",
"seed:undo:all": "npx sequelize-cli db:seed:undo:all --config ./src/config/config.json",
"sequelize:drop-all-tables": "node ./src/db/dropAllTables.js"
},
"repository": {
"type": "git",
"url": "smartq-backend"
},
"keywords": [
"express",
"restapis",
"nodejs",
"postgres",
"jwt",
"bcryptjs",
"cors"
],
"author": "Osama Bin Azam",
"license": "ISC",
"dependencies": {
"axios": "^1.7.2",
"bcrypt": "^5.1.1",
"bcryptjs": "^2.4.3",
"body-parser": "^1.20.2",
"cloudinary": "^2.1.0",
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"googleapis": "^136.0.0",
"jsonwebtoken": "^9.0.2",
"multer": "^1.4.5-lts.1",
"node-schedule": "^2.1.1",
"nodemailer": "^6.9.13",
"otp-generator": "^4.0.1",
"pg": "^8.11.3",
"pg-hstore": "^2.3.4",
"sequelize": "^6.37.1",
"sequelize-auto-migrations": "^1.0.3",
"sharp": "^0.33.3",
"socket.io": "^4.7.5",
"streamifier": "^0.1.1",
"uuid": "^9.0.1",
"vercel": "^34.0.0"
},
"devDependencies": {
"@babel/cli": "^7.24.1",
"@babel/core": "^7.24.4",
"@babel/node": "^7.23.9",
"@babel/preset-env": "^7.24.4",
"@babel/register": "^7.23.7",
"babel-register": "^6.26.0",
"jest": "^29.7.0",
"nodemon": "^3.1.0"
}
}