-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 2.11 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 2.11 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
60
61
62
63
64
{
"name": "banka_api",
"version": "1.0.0",
"description": "A light-weight core banking application that powers banking operations. ",
"main": "src/index.js",
"scripts": {
"start": "NODE_ENV=development node src/index.js",
"dev": "nodemon src/index.js --exec babel-node",
"drop": "babel-node ./src/models tearDown",
"start:heroku": "babel-node src/index.js",
"heroku-post-build": "npm install",
"test": "NODE_ENV=testing npm run drop && NODE_ENV=testing npm run create && NODE_ENV=testing npm run superuser && NODE_ENV=testing nyc --reporter=html --reporter=text --require @babel/register --require @babel/polyfill mocha src/test/**/*.js --exit",
"coverage": "nyc report --reporter=text-lcov | coveralls",
"lint": "node_modules/.bin/eslint --fix src",
"create": "babel-node ./src/models createTables",
"superuser": "babel-node ./src/controllers/auth/superUser.js createSuperUser"
},
"repository": {
"type": "git",
"url": "git+https://github.com/DrKimpatrick/Banka_API.git"
},
"author": "dr.kimpatrick",
"license": "ISC",
"bugs": {
"url": "https://github.com/DrKimpatrick/Banka_API/issues"
},
"homepage": "https://github.com/DrKimpatrick/Banka_API#readme",
"devDependencies": {
"@babel/cli": "^7.4.3",
"@babel/core": "^7.4.3",
"@babel/node": "^7.2.2",
"@babel/preset-env": "^7.4.3",
"coveralls": "^3.0.2",
"eslint": "^5.16.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-plugin-import": "^2.16.0",
"mocha-lcov-reporter": "^1.3.0",
"nodemon": "^1.18.11",
"npm-run-all": "^4.1.5",
"nyc": "^13.3.0",
"request": "^2.88.0"
},
"dependencies": {
"@babel/polyfill": "^7.4.3",
"@babel/register": "^7.4.0",
"bcryptjs": "^2.4.3",
"body-parser": "^1.18.3",
"chai-http": "^4.2.1",
"cors": "^2.8.5",
"dotenv": "^7.0.0",
"chai": "^4.2.0",
"express": "^4.16.4",
"istanbul": "^0.4.5",
"jsonwebtoken": "^8.5.1",
"make-runnable": "^1.3.6",
"mocha": "^6.0.2",
"pg": "^7.10.0",
"swagger-jsdoc": "^3.2.9",
"swagger-ui-express": "^4.0.2"
},
"engines": {
"node": "11.12.0"
}
}