-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 2.49 KB
/
package.json
File metadata and controls
70 lines (70 loc) · 2.49 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
66
67
68
69
70
{
"name": "auto-mart",
"version": "1.0.0",
"description": "Auto Mart is an online marketplace for automobiles of diverse makes, model or body type. With Auto Mart, users can sell their cars or buy from trusted dealerships or private sellers",
"main": "app.js",
"scripts": {
"drop": "babel-node app/database/drop.js",
"migration": "babel-node app/database/migration.js",
"test": "cross-env NODE_ENV=test npm run drop && cross-env NODE_ENV=test npm run migration && cross-env NODE_ENV=test nyc --reporter=html --reporter=text --cache mocha ./app/test --require @babel/register --recursive --no-timeout --exit",
"coverage": "nyc report --reporter=text-lcov | coveralls",
"dev-start": "nodemon --exec babel-node --presets @babel/preset-env app.js",
"dev": "npm run drop && cross-env npm run migration && nodemon --exec babel-node --presets @babel/preset-env app.js",
"start": "npm run drop && npm run migration && babel-node app.js",
"lint": "eslint --fix app/"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Malaba6/Auto-Mart.git"
},
"keywords": [
"auto-mart",
"cars",
"sale",
"car-market",
"auto",
"api"
],
"author": "Eric Malaba",
"license": "ISC",
"bugs": {
"url": "https://github.com/Malaba6/Auto-Mart/issues"
},
"homepage": "https://github.com/Malaba6/Auto-Mart#readme",
"dependencies": {
"@babel/cli": "^7.10.4",
"@babel/core": "^7.10.4",
"@babel/node": "^7.10.4",
"@babel/plugin-proposal-class-properties": "^7.10.4",
"@babel/polyfill": "^7.10.4",
"@babel/preset-env": "^7.10.4",
"@babel/register": "^7.10.4",
"bcryptjs": "^2.4.3",
"chai-http": "^4.3.0",
"cloudinary": "^1.22.0",
"cors": "^2.8.5",
"cross-env": "^5.2.1",
"debug": "^4.1.1",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"jsonwebtoken": "^8.5.1",
"make-runnable": "^1.3.6",
"moment": "^2.27.0",
"nodemon": "^1.19.4",
"pg": "^7.18.2",
"swagger-ui-express": "^4.1.4",
"uuid": "^3.4.0"
},
"devDependencies": {
"body-parser": "^1.19.0",
"chai": "^4.2.0",
"coveralls": "^3.1.0",
"eslint": "^5.16.0",
"eslint-config-airbnb-base": "^13.2.0",
"mocha": "^6.2.3",
"nyc": "^14.1.1"
},
"engines": {
"node": "10.15.3"
}
}