-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 2.61 KB
/
package.json
File metadata and controls
77 lines (77 loc) · 2.61 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
71
72
73
74
75
76
77
{
"name": "AutoMart",
"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": "index.js",
"scripts": {
"create": "cross-env NODE_ENV=production babel-node server/db/migrations/createTables.js",
"createtest": "cross-env NODE_ENV=test babel-node server/db/migrations/createTables.js",
"drop": " cross-env NODE_ENV=production babel-node server/db/migrations/dropTables.js",
"droptest": "cross-env NODE_ENV=test babel-node server/db/migrations/dropTables.js",
"start": "cross-env NODE_ENV=production rimraf dist/ && babel ./server -d dist && node dist/app.js",
"startdev": "cross-env NODE_ENV=production nodemon --exec babel-node server/app.js",
"test": "cross-env NODE_ENV=test nyc --require @babel/register mocha server/test --exit",
"testdev": "npm run droptest && npm run createtest && cross-env NODE_ENV=test nyc --require @babel/register mocha server/test --exit && npm run droptest",
"coverage": "nyc report --reporter=text-lcov | coveralls",
"build": "rimraf dist/ && babel ./server -d dist"
},
"repository": {
"type": "git",
"url": "git+https://github.com/amoskeyz/AutoMart.git"
},
"keywords": [
"Heroku",
"git"
],
"author": "Amos Oruaroghene",
"license": "ISC",
"bugs": {
"url": "https://github.com/amoskeyz/AutoMart/issues"
},
"homepage": "https://github.com/amoskeyz/AutoMart#readme",
"dependencies": {
"@babel/runtime": "^7.4.5",
"bcrypt": "^3.0.6",
"bcrypt-nodejs": "0.0.3",
"body-parser": "^1.19.0",
"chai": "^4.2.0",
"chai-http": "^4.3.0",
"cloudinary": "^1.14.0",
"cors": "^2.8.5",
"dotenv": "^8.0.0",
"express": "^4.17.0",
"express-fileupload": "^1.1.5",
"joi": "^14.3.1",
"jsonwebtoken": "^8.5.1",
"mocha": "^6.1.4",
"pg": "^7.11.0",
"sinon": "^7.3.2",
"swagger-ui-express": "^4.0.5",
"yamljs": "^0.3.0"
},
"devDependencies": {
"@babel/cli": "^7.4.4",
"@babel/core": "^7.4.5",
"@babel/node": "^7.4.5",
"@babel/plugin-transform-regenerator": "^7.4.0",
"@babel/plugin-transform-runtime": "^7.4.0",
"@babel/preset-env": "^7.4.5",
"coveralls": "^3.0.3",
"cross-env": "^5.2.0",
"eslint": "^5.16.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-plugin-import": "^2.17.2",
"mocha-lcov-reporter": "^1.3.0",
"nodemon": "^1.19.0",
"nyc": "^14.1.1"
},
"nyc": {
"require": [
"babel-register"
],
"reporter": [
"lcov",
"text"
]
}
}