-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
58 lines (58 loc) · 1.73 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
{
"name": "piggy-bank",
"version": "1.0.0",
"description": "Mini Digital Bank",
"main": "./source/server.js",
"scripts": {
"test": "NODE_ENV=test sequelize db:migrate:undo:all && NODE_ENV=test sequelize db:migrate && jest --coverage --notify --forceExit .",
"start": "sequelize db:migrate:undo:all && sequelize db:migrate && nodemon ./src/server.js",
"populatedb": "sequelize db:seed:all"
},
"repository": {
"type": "git",
"url": "git+https://github.com/TechUniv2018/Piggy-Bank.git"
},
"author": "Paridhi Mohindra, Anmol Varma, Krishna R Dixit, Surabhi Gupta",
"license": "ISC",
"bugs": {
"url": "https://github.com/TechUniv2018/Piggy-Bank/issues"
},
"homepage": "https://github.com/TechUniv2018/Piggy-Bank#readme",
"devDependencies": {
"eslint": "^4.16.0",
"eslint-config-airbnb": "^16.1.0",
"eslint-config-airbnb-base": "^12.1.0",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-jsx-a11y": "^6.0.3",
"eslint-plugin-react": "^7.6.1",
"jest": "^22.1.4",
"nodemon": "^1.14.12"
},
"dependencies": {
"axios": "^0.18.0",
"bcrypt": "^1.0.3",
"boom": "^7.1.1",
"crypto": "^1.0.1",
"handlebars": "^4.0.11",
"hapi": "^16.6.2",
"hapi-auth-jwt2": "^7.4.1",
"hapi-swagger": "^9.1.1",
"inert": "^5.1.0",
"joi-date-extensions": "^1.1.1",
"joi-phone-validator": "^1.0.0",
"jsonwebtoken": "^8.1.1",
"node-fetch": "^2.0.0",
"nodemailer": "^4.6.3",
"pg": "^7.4.1",
"pusher": "^1.5.1",
"pusher-js": "^4.2.2",
"request": "^2.83.0",
"request-promise": "^4.2.2",
"sequelize": "^4.32.6",
"sequelize-cli": "^3.2.0",
"strftime": "^0.10.0",
"time": "^0.12.0",
"uuid": "^3.2.1",
"vision": "^4.1.1"
}
}