-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.69 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.69 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
{
"name": "e-rental",
"version": "1.0.0",
"description": "E-Rental is an free online market where people around kigali can post and request a house for rent",
"main": "app.js",
"scripts": {
"test": "cross-env NODE_ENV=test nyc --reporter=html --reporter=text mocha --require babel-polyfill --require @babel/register ./server/tests/*.test.js --timeout 1600 --exit",
"start": "nodemon --exec babel-node app.js",
"dev-start": "nodemon --exec babel-node --presets @babel/preset-env app.js",
"lint": "eslint --fix app/"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Malaba6/E-Rental.git"
},
"keywords": [
"rentals",
"kigali",
"house"
],
"author": "code-geeks",
"license": "ISC",
"bugs": {
"url": "https://github.com/Malaba6/E-Rental/issues"
},
"homepage": "https://github.com/Malaba6/E-Rental#readme",
"dependencies": {
"@babel/cli": "^7.5.5",
"@babel/core": "^7.5.5",
"@babel/node": "^7.5.5",
"@babel/preset-env": "^7.5.5",
"@babel/register": "^7.5.5",
"babel-polyfill": "^6.26.0",
"bcryptjs": "^2.4.3",
"body-parser": "^1.19.0",
"cloudinary": "^1.14.0",
"connect-multiparty": "^2.2.0",
"dotenv": "^8.0.0",
"express": "^4.17.1",
"joi": "^14.3.1",
"jsonwebtoken": "^8.5.1",
"moment": "^2.24.0",
"morgan": "^1.9.1",
"nodemon": "^1.19.1",
"pg": "^7.11.0",
"sequelize": "^5.10.1"
},
"devDependencies": {
"chai": "^4.2.0",
"chai-http": "^4.3.0",
"coveralls": "^3.0.5",
"cross-env": "^5.2.0",
"eslint": "^4.19.1",
"eslint-config-airbnb-base": "^13.2.0",
"eslint-plugin-import": "^2.18.1",
"mocha": "^6.2.0",
"nyc": "^14.1.1"
}
}