-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.06 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.06 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
{
"name": "server",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"dev": "nodemon app.js",
"rollback": "knex migrate:rollback",
"migrate": "knex migrate:latest",
"seed": " knex seed:run",
"start": "node app.js"
},
"keywords": [],
"author": "Gibran Khrisna Putra <gibrankhrisnaputra@gmail.com>",
"license": "MIT",
"dependencies": {
"@sendgrid/mail": "^6.3.1",
"aws-sdk": "^2.318.0",
"bcryptjs": "^2.4.3",
"body-parser": "^1.18.3",
"cors": "^2.8.4",
"date-fns": "^1.29.0",
"dotenv": "^6.0.0",
"express": "^4.16.3",
"file-type": "^9.0.0",
"helmet": "^3.13.0",
"jsonwebtoken": "^8.3.0",
"knex": "^0.15.2",
"morgan": "^1.9.0",
"ms": "^2.1.1",
"multiparty": "^4.2.1",
"mysql2": "^1.6.1",
"nanoid": "^1.2.3",
"objection": "^1.2.2",
"passport": "^0.4.0",
"passport-facebook": "^2.1.1",
"passport-google-oauth20": "^1.0.0",
"passport-jwt": "^4.0.0",
"passport-local": "^1.0.0"
},
"devDependencies": {
"faker": "^4.1.0"
}
}