-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.24 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.24 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
{
"name": "vehicle-rental-app-server",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "mocha --timeout 5000 --exit",
"test:unit": "mocha ./test/unit.js --exit",
"test:user": "mocha ./test/user.js --exit",
"test:vendor": "mocha ./test/vendor.js --exit",
"dev": "nodemon app.js",
"start": "node server.js",
"coverage": "nyc npm run test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Vehicle-Rental-App/server.git"
},
"keywords": [],
"author": "Farhan Haryawan, Mohammad Fitrah Ramadhan Lamusu, Muhammad Akbar Habiby Khalid",
"license": "ISC",
"bugs": {
"url": "https://github.com/Vehicle-Rental-App/server/issues"
},
"homepage": "https://github.com/Vehicle-Rental-App/server#readme",
"dependencies": {
"aws-sdk": "^2.809.0",
"bcryptjs": "^2.4.3",
"chai": "^4.2.0",
"chai-http": "^4.3.0",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"greenlock-express": "^4.0.3",
"jsonwebtoken": "^8.5.1",
"mocha": "^8.2.1",
"mongoose": "^5.11.7",
"multer": "^1.4.2",
"nodemailer": "^6.4.17",
"uuid": "^8.3.2",
"validator": "^13.5.2"
},
"devDependencies": {
"nyc": "^15.1.0"
}
}