-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
51 lines (51 loc) · 1.37 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
{
"name": "patronize-api",
"version": "1.0.0",
"description": "Simple Fintech for Patronize.co",
"main": "app.js",
"scripts": {
"dev": "nodemon -r esm app",
"test": "cross-env PATRONIZE_NODE_ENV=test mocha -c -r esm test/**/*.test.js --timeout 12000 --exit",
"migrate": "db-migrate --migrations-dir ./app/db/migrations",
"migrate:up": "npm run migrate up"
},
"author": "Faithful Ojebiyi",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/faithfulojebiyi/patronize-api.git"
},
"dependencies": {
"app-root-path": "^3.0.0",
"axios": "^0.21.4",
"bcrypt": "^5.0.1",
"cors": "^2.8.5",
"cross-env": "^7.0.3",
"db-migrate": "^0.11.12",
"db-migrate-mysql": "^2.1.2",
"dotenv": "^10.0.0",
"esm": "^3.2.25",
"express": "^4.17.1",
"faker": "^5.5.3",
"helmet": "^4.6.0",
"joi": "^17.4.2",
"jsonwebtoken": "^8.5.1",
"morgan": "^1.10.0",
"mysql2": "^2.3.0",
"node-forge": "^0.10.0",
"serve-favicon": "^2.5.0",
"uuid": "^8.3.2",
"winston": "^3.3.3"
},
"devDependencies": {
"chai": "^4.3.4",
"chai-http": "^4.3.0",
"eslint": "^7.32.0",
"eslint-config-standard": "^16.0.3",
"eslint-plugin-import": "^2.24.2",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^5.1.0",
"mocha": "^8.4.0",
"nodemon": "^2.0.12"
}
}