-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.99 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.99 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
{
"name": "wayfarer",
"version": "1.0.0",
"description": "WayFarer is a public bus transportation booking server.",
"main": "server.js",
"scripts": {
"dev": "nodemon --exec babel-node api/server.js",
"test": "npm run migrate:test && cross-env NODE_ENV=test nyc mocha --require babel-register ./test/*.test.js --exit || true",
"clean": "rm -rf lib && mkdir lib",
"build": "npm run clean && babel api -d ./lib",
"migrate:test": "cross-env NODE_ENV=test babel-node api/v1/db/migrations/index.js",
"migrate": "node lib/v1/db/migrations/index.js",
"start": "node lib/server.js",
"heroku-postbuild": "npm run build && node lib/v1/db/migrations/index.js",
"coverage": "cross-env NODE_ENV=test babel-node node_modules/babel-istanbul/lib/cli.js cover node_modules/mocha/bin/_mocha",
"coveralls": "npm run coverage && cat coverage/lcov.info | coveralls"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dieudonneAwa/WayFarer.git"
},
"author": "Awa Dieudonne Mbuh",
"license": "ISC",
"bugs": {
"url": "https://github.com/dieudonneAwa/WayFarer/issues"
},
"homepage": "https://github.com/dieudonneAwa/WayFarer#readme",
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.3",
"babel-istanbul": "^0.12.2",
"babel-preset-env": "^1.7.0",
"babel-preset-es2015": "^6.24.1",
"chai": "^4.2.0",
"coveralls": "^3.0.5",
"cross-env": "^5.2.0",
"eslint": "^5.3.0",
"eslint-config-airbnb-base": "13.1.0",
"eslint-plugin-import": "2.18.0",
"mocha": "^6.1.4",
"mocha-lcov-reporter": "^1.3.0",
"morgan": "^1.9.1",
"nyc": "^14.1.1"
},
"dependencies": {
"bcrypt": "^3.0.6",
"bcryptjs": "^2.4.3",
"body-parser": "^1.19.0",
"chai-http": "^4.3.0",
"dotenv": "^8.0.0",
"express": "^4.17.1",
"express-promise-router": "^3.0.3",
"jsonwebtoken": "^8.5.1",
"make-runnable": "^1.3.6",
"pg": "^7.11.0",
"swagger-ui-express": "^4.0.7",
"uuid": "^3.3.2"
}
}