-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.55 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
{
"name": "cafe-app-api",
"version": "1.0.0",
"description": "",
"main": "app.js",
"scripts": {
"start": "NODE_ENV=production node ./src/app.js",
"create-env": "printenv > .env",
"dev": "nodemon ./src/app.js",
"migrate": "knex migrate:latest",
"rollback": "knex migrate:rollback",
"seed": "knex seed:run",
"flush": "knex migrate:rollback && knex migrate:latest && knex seed:run",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/stellairelabs/cafe-app-api.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/stellairelabs/cafe-app-api/issues"
},
"homepage": "https://github.com/stellairelabs/cafe-app-api#readme",
"devDependencies": {
"nodemon": "^2.0.16"
},
"dependencies": {
"@aws-sdk/client-s3": "^3.107.0",
"bcrypt": "^5.0.1",
"cookie-session": "^2.0.0",
"cors": "^2.8.5",
"crypto": "^1.0.1",
"db-errors": "^0.2.3",
"dotenv": "^16.0.1",
"ejs": "^3.1.8",
"envalid": "^7.3.1",
"express": "^4.18.1",
"express-session": "^1.17.3",
"joi": "^17.6.0",
"jsonwebtoken": "^8.5.1",
"knex": "^2.0.0",
"multer": "^1.4.5-lts.1",
"multer-s3": "^3.0.1",
"mysql2": "^2.3.3",
"node-schedule": "^2.1.0",
"nodemailer": "^6.7.5",
"objection": "^3.0.1",
"passport": "^0.6.0",
"passport-facebook": "^3.0.0",
"passport-google-oauth20": "^2.0.0",
"socket.io": "^4.5.1",
"swagger-jsdoc": "^6.2.1",
"swagger-ui-express": "^4.4.0"
}
}