-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.6 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
{
"name": "team-hacknode-e-wallet-api",
"version": "1.0.0",
"description": "Wallet api for an e-wallet app",
"main": "server.js",
"scripts": {
"start": "node src/server.js",
"dev": "npx sequelize-cli db:migrate && nodemon src/server.js",
"test": "echo \"Error: no test specified\" && exit 1",
"migrate:up": "npx sequelize-cli db:migrate",
"migrate:down": "npx sequelize-cli db:migrate:undo:all"
},
"repository": {
"type": "git",
"url": "git+https://github.com/devcareer/team-hacknode-e-wallet-api.git"
},
"keywords": [],
"author": "team-hacknode",
"license": "ISC",
"bugs": {
"url": "https://github.com/devcareer/team-hacknode-e-wallet-api/issues"
},
"homepage": "https://github.com/devcareer/team-hacknode-e-wallet-api#readme",
"devDependencies": {
"eslint": "^8.27.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jsx-a11y": "^6.6.1",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.31.10",
"eslint-plugin-react-hooks": "^4.6.0",
"nodemon": "^2.0.20",
"sequelize-cli": "^6.5.2"
},
"dependencies": {
"bcrypt": "^5.1.0",
"cors": "^2.8.5",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"flutterwave-node-v3": "^1.0.11",
"jsonwebtoken": "^8.5.1",
"passport": "^0.6.0",
"pg": "^8.8.0",
"pg-hstore": "^2.3.4",
"sequelize": "^6.25.6",
"uuid": "^9.0.0",
"winston": "^2.1.1",
"winston-slack-hook": "^0.3.0",
"winston-slack-webhook-transport": "^2.2.2",
"winston-slacker": "^1.0.3"
}
}