-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
75 lines (75 loc) · 1.84 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
73
74
75
{
"name": "banka_app_server",
"version": "1.0.0",
"description": "Server for the Banka App",
"main": "index.js",
"engines": {
"node": "14"
},
"nyc": {
"require": [
"@babel/register"
],
"reporter": [
"lcov",
"text-summary"
],
"sourceMap": false,
"instrument": false
},
"scripts": {
"test": "cross-env NODE_ENV=test nyc mocha --timeout 20000 --exit",
"test:watch": "mocha -w test/",
"dev": "cross-env NODE_ENV=development nodemon index.js --exec ./node_modules/.bin/babel-node",
"start": "babel-node index.js",
"lint": "eslint --fix",
"coveralls": "cat ./coverage/lcov.info | coveralls"
},
"author": "Wokoro Samuel",
"license": "MIT",
"devDependencies": {
"babel-plugin-istanbul": "^5.1.2",
"chai": "^4.2.0",
"chai-http": "^4.2.1",
"coveralls": "^3.0.3",
"cross-env": "^5.2.0",
"eslint": "^5.16.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-plugin-import": "^2.16.0",
"eslint-plugin-jsx-a11y": "^6.2.1",
"faker": "^4.1.0",
"mocha": "^6.1.4",
"nodemon": "^1.18.10",
"nyc": "^14.0.0",
"sinon": "^7.3.2"
},
"dependencies": {
"@babel/cli": "^7.4.3",
"@babel/core": "^7.4.3",
"@babel/node": "^7.2.2",
"@babel/polyfill": "^7.4.3",
"@babel/preset-env": "^7.4.3",
"@babel/register": "^7.4.0",
"bcrypt": "^3.0.5",
"bcrypt-nodejs": "0.0.3",
"bcryptjs": "^2.4.3",
"body-parser": "^1.18.3",
"cors": "^2.8.5",
"dotenv": "^7.0.0",
"express": "^4.16.4",
"joi": "^14.3.1",
"jsonwebtoken": "^8.5.1",
"morgan": "^1.9.1",
"mysql2": "^2.3.2",
"node-fetch": "^2.3.0",
"nodemailer": "^6.1.0",
"swagger-jsdoc": "^3.2.9",
"swagger-ui-express": "^4.0.2"
},
"nodemonConfig": {
"ignore": [
"data/*.json"
]
}
}