-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
59 lines (59 loc) · 1.91 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
{
"name": "wayfarer-api",
"version": "1.0.0",
"description": "WayFarer is a public bus transportation booking service. (API)",
"main": "index.js",
"scripts": {
"dev": "babel-watch ./api/server.js",
"test": "mocha --require @babel/register test/*.test.js --exit --timeout 10000",
"build": "rm -rf ./build && babel api -d build",
"generate-lcov": "nyc report --reporter=text-lcov > lcov.info",
"coveralls-coverage": "coveralls < lcov.info",
"codeclimate-coverage": "codeclimate-test-reporter < lcov.info",
"coverage": "nyc npm test && npm run generate-lcov && npm run coveralls-coverage && npm run codeclimate-coverage",
"start": "npm run build && node build/server.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/nignanthomas/wayfarer-api.git"
},
"keywords": [],
"author": "nignanthomas",
"license": "ISC",
"bugs": {
"url": "https://github.com/nignanthomas/wayfarer-api/issues"
},
"homepage": "https://github.com/nignanthomas/wayfarer-api#readme",
"dependencies": {
"@hapi/joi": "^15.1.0",
"babel-watch": "^7.0.0",
"body-parser": "^1.19.0",
"express": "^4.17.1",
"moment": "^2.24.0",
"morgan": "^1.9.1",
"swagger-ui-express": "^4.0.7",
"uuid": "^3.3.2"
},
"devDependencies": {
"@babel/cli": "^7.5.5",
"@babel/core": "^7.5.5",
"@babel/node": "^7.5.5",
"@babel/plugin-transform-runtime": "^7.5.5",
"@babel/preset-env": "^7.5.5",
"@babel/register": "^7.5.5",
"@babel/runtime": "^7.5.5",
"babel-eslint": "^10.0.2",
"babel-loader": "^8.0.6",
"chai": "^4.2.0",
"chai-http": "^4.3.0",
"codeclimate-test-reporter": "^0.5.1",
"coveralls": "^3.0.5",
"eslint": "^5.16.0",
"eslint-config-airbnb": "^17.1.1",
"eslint-plugin-import": "^2.18.0",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-react": "^7.14.2",
"mocha": "^6.2.0",
"nyc": "^14.1.1"
}
}