-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.71 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.71 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
{
"name": "wayfarer",
"version": "1.0.0",
"description": "WayFarer is a public bus transportation booking service.",
"main": "index.js",
"scripts": {
"start": "npm run dev",
"dev": "nodemon server --exec babel-node --config .nodemonrc.json | pino-pretty",
"test": "npm run create-dev && nyc --reporter=html --reporter=text cross-env NODE_ENV=test mocha --require @babel/register test/**/*spec.js --exit",
"coverage": "nyc report --reporter=text-lcov | coveralls",
"lint": "eslint -c .eslintrc.json {server,test}/**",
"lint:fix": "eslint --fix -c .eslintrc.json {server,test}/**",
"create-dev": "cross-env NODE_ENV=development node ./server/api/services/db createAllTables"
},
"dependencies": {
"@babel/cli": "^7.5.5",
"@babel/core": "^7.5.5",
"@babel/node": "^7.5.5",
"@babel/preset-env": "^7.5.5",
"@hapi/joi": "^15.1.0",
"babel-eslint": "^10.0.2",
"bcryptjs": "^2.4.3",
"body-parser": "^1.19.0",
"chai": "^4.2.0",
"coveralls": "^3.0.6",
"cross-env": "^5.2.0",
"dotenv": "^8.0.0",
"eslint": "^6.1.0",
"eslint-config-airbnb-base": "^13.2.0",
"eslint-plugin-import": "^2.18.2",
"express": "^4.17.1",
"express-joi-validation": "^2.0.0",
"fs": "0.0.1-security",
"jsonwebtoken": "^8.5.1",
"make-runnable": "^1.3.6",
"mocha": "^6.2.0",
"mocha-lcov-reporter": "^1.3.0",
"node-mocks-http": "^1.7.6",
"nodemon": "^1.19.1",
"nyc": "^14.1.1",
"pg": "^7.12.1",
"pino": "^5.13.1",
"pino-pretty": "^3.2.0",
"supertest": "^4.0.2",
"swagger-ui-express": "^4.0.7",
"yamljs": "^0.3.0"
},
"devDependencies": {},
"author": "Gildas Niyigena <gildniy05@gmail.com> (https://github.com/gildniy)"
}