-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1.08 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
{
"name": "backend",
"version": "1.0.0",
"description": "Backend Refugee Stories",
"main": "index.js",
"scripts": {
"test": "cross-env DB_ENV=testing jest --watch --verbose",
"start": "node index.js",
"server": "nodemon index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/labs-sg1-refugee-stories/backend.git"
},
"keywords": [],
"author": "Sharanjit Sandhu",
"license": "MIT",
"bugs": {
"url": "https://github.com/labs-sg1-refugee-stories/backend/issues"
},
"homepage": "https://github.com/labs-sg1-refugee-stories/backend#readme",
"dependencies": {
"bcryptjs": "^2.4.3",
"cloudinary": "^1.14.0",
"cors": "^2.8.5",
"dotenv": "^8.0.0",
"express": "^4.17.1",
"helmet": "^3.18.0",
"jsonwebtoken": "^8.5.1",
"knex": "^0.17.3",
"knex-cleaner": "^1.1.4",
"morgan": "^1.9.1",
"multer": "^1.4.1",
"multer-storage-cloudinary": "^2.2.1",
"pg": "^7.11.0"
},
"devDependencies": {
"cross-env": "^5.2.0",
"jest": "^24.8.0",
"nodemon": "^1.19.1",
"supertest": "^4.0.2"
}
}