-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.78 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.78 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
{
"name": "banka",
"version": "1.0.0",
"description": "Banka is a light-weight core banking application that powers banking operations like account creation, customer deposit and withdrawals.",
"main": "app.js",
"scripts": {
"start": "node ./build/app.js",
"build": "rm -rf build && babel server -d build",
"dev": "npm run buildTables && nodemon --exec babel-node --presets babel-preset-env ./server/app.js",
"test": "cross-env NODE_ENV=test npm run buildTables && cross-env NODE_ENV=test mocha --require babel-register tests/*.test.js --exit",
"buildTables": "babel-node --presets babel-preset-env ./server/db/buildTables.js",
"coverage": "nyc npm test && cross-env NODE_ENV=test nyc report --reporter=text-lcov | coveralls"
},
"engines": {
"node": "10.15.3"
},
"keywords": [
"banking",
"operations",
"application",
"lightweight"
],
"author": "Ayodeji Afolabi",
"license": "ISC",
"dependencies": {
"babel-runtime": "^6.26.0",
"bcrypt": "^3.0.5",
"compression": "^1.7.4",
"config": "^3.0.1",
"cors": "^2.8.5",
"express": "^4.16.4",
"helmet": "^3.16.0",
"joi": "^14.3.1",
"jsonwebtoken": "^8.5.1",
"loadash": "^1.0.0",
"moment": "^2.24.0",
"pg": "^7.10.0",
"swagger-ui-express": "^4.0.2",
"yamljs": "^0.3.0"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.7.0",
"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-base": "^13.1.0",
"eslint-plugin-import": "^2.16.0",
"mocha": "^6.1.2",
"nodemon": "^1.18.10",
"nyc": "^14.1.1"
}
}