-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.85 KB
/
Copy pathpackage.json
File metadata and controls
65 lines (65 loc) · 1.85 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
60
61
62
63
64
65
{
"name": "automart-api-endpoints",
"version": "1.0.0",
"engines": {
"node": "10.15.3"
},
"description": "Api that will serve our built templates",
"main": "index.js",
"scripts": {
"start": "nodemon index --exec babel-node --presets @babel/preset-env",
"test": "mocha --exit --require @babel/register ./server/tests/*",
"lint": "eslint",
"coverage": "nyc --reporter=lcov --reporter=text-lcov npm test | coveralls"
},
"repository": {
"type": "git",
"url": "git+https://github.com/WinnersProx/AutoMart.git"
},
"author": "Bihame Sikubwabo Vainqueur",
"license": "ISC",
"bugs": {
"url": "https://github.com/WinnersProx/AutoMart/issues"
},
"homepage": "https://github.com/WinnersProx/AutoMart#readme",
"dependencies": {
"@babel/cli": "^7.4.4",
"@babel/core": "^7.4.5",
"@babel/node": "^7.4.5",
"@babel/plugin-syntax-dynamic-import": "^7.2.0",
"@babel/preset-env": "^7.4.5",
"@babel/register": "^7.4.4",
"bcrypt": "^3.0.6",
"braces": "^2.3.1",
"chai": "^4.2.0",
"chai-http": "^4.3.0",
"cloudinary": "^1.14.0",
"cors": "^2.8.5",
"coveralls": "^3.0.4",
"crypto": "^1.0.1",
"dotenv": "^8.0.0",
"express": "^4.17.0",
"express-fileupload": "^1.1.4",
"jsonwebtoken": "^8.5.1",
"jwt-decode": "^2.2.0",
"multer": "^1.4.1",
"nodemailer": "^6.2.1",
"nyc": "^14.1.1",
"passport": "^0.4.0",
"passport-jwt": "^4.0.0",
"passport-local": "^1.0.0",
"random-bytes": "^1.0.0"
},
"devDependencies": {
"@babel/node": "^7.4.5",
"babel-cli": "^6.26.0",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-watch": "^7.0.0",
"eslint": "^5.16.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-plugin-import": "^2.17.3",
"istanbul": "^0.4.5",
"mocha": "^6.1.4",
"mocha-lcov-reporter": "^1.3.0"
}
}