-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
73 lines (73 loc) · 2.31 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
{
"name": "vcard_wallet",
"version": "1.0.0",
"description": "This system allow users to fund their account, transfer funds and withdraw from their account, and also subscribe to virtual credit card",
"main": "app.js",
"scripts": {
"dev": "nodemon --exec babel-node ./server/app.js",
"pm2-dev": "pm2 start --interpreter babel-node ./server/app.js -l logs.txt",
"migrate": "npx sequelize-cli db:migrate",
"lint": "eslint server/ --fix",
"clean": "rm -rf build && mkdir build",
"build-babel": "babel ./server --out-dir ./build",
"build": "npm run clean && npm run build-babel",
"startScript": "npm run build && node ./build/app.js",
"pm2": "npm run build && pm2 start ./build/app.js -l logs.txt",
"test": "cross-env NODE_ENV=test node --experimental-vm-modules node_modules/jest/bin/jest.js jest --coverage --testPathPattern=tests --testTimeout=10000 --runInBand --detectOpenHandles --forceExit"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Emengkeng/e-wallet-system.git"
},
"author": "emengkeng juslen",
"license": "ISC",
"bugs": {
"url": "https://github.com/Emengkeng/e-wallet-system/issues"
},
"homepage": "https://github.com/Emengkeng/e-wallet-system#readme",
"dependencies": {
"@babel/core": "^7.23.0",
"@babel/node": "^7.22.19",
"@babel/preset-env": "^7.22.20",
"axios": "^1.5.0",
"bcryptjs": "^2.4.3",
"chai": "^4.3.8",
"chai-http": "^4.4.0",
"compression": "^1.7.4",
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"debug": "^4.3.4",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"express-validation": "^4.1.0",
"express-validator": "^7.0.1",
"flutterwave-node": "^1.2.2",
"helmet": "^7.0.0",
"http-status": "^1.7.0",
"istanbul": "^0.4.5",
"joi": "^17.10.2",
"jsonwebtoken": "^9.0.2",
"mysql2": "^3.6.1",
"nodemailer": "^6.9.5",
"nyc": "^15.1.0",
"pm2": "^5.3.0",
"randomstring": "^1.3.0",
"sequelize": "^6.33.0",
"url-parse": "^1.5.10",
"uuid": "^9.0.1",
"validator": "^13.11.0",
"xss-clean": "^0.1.4"
},
"devDependencies": {
"axios-mock-adapter": "^1.22.0",
"cross-env": "^7.0.3",
"nodemon": "^3.0.1",
"sequelize-cli": "^6.6.1",
"supertest": "^6.3.3"
},
"jest": {
"testEnvironment": [
""
]
}
}