-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 2.41 KB
/
package.json
File metadata and controls
79 lines (79 loc) · 2.41 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
78
79
{
"name": "automart",
"version": "1.0.0",
"description": "an online marketplace for automobile",
"main": "index.js",
"scripts": {
"start:dev": "nodemon --exec babel-node ./SERVER/server",
"create:tables": "node ./SERVER/db createCarTables && node ./SERVER/db createOrderTables && node ./SERVER/db createUserTables",
"clean": "rm -rf build && mkdir build",
"build-babel": "babel -d ./build ./SERVER -s",
"build": "npm run clean && npm run build-babel",
"start": " node ./build/server.js",
"test": " npm run build && mocha --timeout 20000 './build/test/*.js' --recursive || true ",
"coveralls": "nyc --reporter=lcov --reporter=text-lcov npm test",
"generate-lcov": "nyc report --reporter=text-lcov >lcov.info",
"coveralls-coverage": "coveralls < lcov.info",
"coverage": "nyc npm test && npm run generate-lcov && npm run coveralls-coverage"
},
"repository": {
"type": "git",
"url": "git+https://github.com/voke1/Atmrt.git"
},
"engines": {
"node": "v10.15.3"
},
"keywords": [
"online",
"marketplace",
"automobile"
],
"author": "Voke Olomu",
"license": "ISC",
"bugs": {
"url": "https://github.com/voke1/Atmrt/issues"
},
"homepage": "https://github.com/voke1/Atmrt#readme",
"dependencies": {
"@babel/polyfill": "^7.4.4",
"async": "^3.1.0",
"bcrypt": "^3.0.6",
"body-parser": "^1.19.0",
"cloudinary": "^1.14.0",
"connect-multiparty": "^2.2.0",
"crypto": "^1.0.1",
"dotenv": "^8.0.0",
"express": "^4.17.1",
"express-validator": "^6.1.1",
"jsonwebtoken": "^8.5.1",
"moment": "^2.24.0",
"morgan": "^1.9.1",
"nodemailer": "^6.2.1",
"pg": "^7.11.0",
"sequelize": "^5.15.1",
"sequelize-cli": "^5.5.0",
"swagger-ui-express": "^4.0.6",
"uuid": "^3.3.2"
},
"devDependencies": {
"@babel/cli": "^7.4.4",
"@babel/core": "^7.4.5",
"@babel/node": "^7.4.5",
"@babel/plugin-proposal-class-properties": "^7.4.4",
"@babel/preset-env": "^7.4.5",
"@babel/register": "^7.4.4",
"chai": "^4.2.0",
"chai-http": "^4.3.0",
"codeclimate-test-reporter": "^0.5.1",
"coveralls": "^3.0.4",
"eslint": "^5.16.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-plugin-import": "^2.17.3",
"make-runnable": "^1.3.6",
"mocha": "^6.1.4",
"mocha-lcov-reporter": "^1.3.0",
"nodemon": "^1.19.1",
"nyc": "^14.1.1"
}
}