-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
72 lines (72 loc) · 2.42 KB
/
package.json
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
{
"name": "way-farer-app",
"version": "1.0.0",
"description": "WayFarer is a public bus transportation booking App.",
"main": "src/index.js",
"scripts": {
"test": " cross-env NODE_ENV=test nyc _mocha build/src/tests/*.js --recursive --require @babel/register --timeout 10000 --exit",
"start": "node build/src/index.js",
"dev-start": "nodemon --exec babel-node server/src/index.js",
"build": "babel server --out-dir build",
"serve": "node build/index.js",
"clean": "rm -rf build && mkdir build",
"codeclimate-coverage": "codeclimate-test-reporter < lcov.info",
"generate-lcov": "nyc report --reporter=text-lcov >lcov.info",
"coveralls": "npm run cover -- --report lcovonly && cat ./coverage/lcov.info | coveralls",
"coverage": "nyc npm test && npm run generate-lcov && npm run coveralls-coverage && npm run codeclimate-coverage",
"coveralls-coverage": "coveralls < lcov.info"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ikeshegs/way-farer-app.git"
},
"author": "Ikechukwu Okoro",
"license": "ISC",
"bugs": {
"url": "https://github.com/ikeshegs/way-farer-app/issues"
},
"homepage": "https://github.com/ikeshegs/way-farer-app#readme",
"devDependencies": {
"@babel/cli": "^7.4.4",
"@babel/core": "^7.4.5",
"@babel/node": "^7.4.5",
"@babel/preset-env": "^7.4.5",
"@babel/register": "^7.4.4",
"babel-core": "^6.26.3",
"babel-eslint": "^9.0.0",
"codeclimate-test-reporter": "^0.5.1",
"coveralls": "^3.0.4",
"eslint": "^5.3.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-config-prettier": "^4.3.0",
"eslint-plugin-import": "^2.18.0",
"eslint-plugin-jsx-a11y": "^6.2.1",
"eslint-plugin-prettier": "^3.1.0",
"eslint-plugin-react": "^7.14.2",
"mocha-lcov-reporter": "^1.3.0",
"nodemon": "^1.19.1",
"prettier": "^1.18.2"
},
"dependencies": {
"bcrypt": "^3.0.6",
"body-parser": "^1.19.0",
"chai": "^4.2.0",
"chai-http": "^4.3.0",
"core-js": "^3.0.1",
"cross-env": "^5.2.0",
"dotenv": "^8.0.0",
"express": "^4.17.1",
"jsonwebtoken": "^8.5.1",
"make-runnable": "^1.3.6",
"mocha": "^6.1.4",
"moment": "^2.24.0",
"nyc": "^14.1.1",
"pg": "^7.11.0",
"regenerator-runtime": "^0.13.2",
"swagger-jsdoc": "^3.3.0",
"swagger-ui-express": "^4.0.7",
"uuid": "^3.3.2",
"yamljs": "^0.3.0"
}
}