-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 885 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 885 Bytes
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
{
"name": "HireLambda-BackEnd",
"version": "1.0.0",
"description": "BE for Lambda App Store",
"main": "index.js",
"author": "Brandon Gardner",
"license": "MIT",
"dependencies": {
"@sendgrid/mail": "^6.3.1",
"airtable": "^0.5.10",
"axios": "^0.19.0",
"bcryptjs": "^2.4.3",
"body-parser": "^1.19.0",
"cloudinary": "^1.14.0",
"cors": "^2.8.5",
"dotenv": "^7.0.0",
"express": "^4.16.4",
"helmet": "^3.16.0",
"jest": "^24.8.0",
"jsonwebtoken": "^8.5.1",
"knex": "^0.16.3",
"lodash": "^4.17.14",
"multer": "^1.4.1",
"multer-storage-cloudinary": "^2.2.1",
"pg": "^7.9.0",
"supertest": "^4.0.2",
"yarn": "^1.16.0"
},
"devDependencies": {
"nodemon": "^1.18.10"
},
"scripts": {
"start": "node index.js",
"server": "nodemon index.js",
"test": "DB_ENV=production jest --watch"
}
}