-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
71 lines (71 loc) · 1.96 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
{
"name": "crediwallet",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "jest --coverage",
"migrate": "npx ts-node src/migrate.ts",
"start": "npx tsc && node dist/server.js",
"starts": "npx nodemon --exec npx ts-node -r tsconfig-paths/register src/server.ts",
"dev": "nodemon --watch src --exec ts-node src/server.ts",
"build": "NODE_ENV=development tsc",
"test:watch": "jest --watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/samuelogboye/CrediWallet.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/samuelogboye/CrediWallet/issues"
},
"homepage": "https://github.com/samuelogboye/CrediWallet#readme",
"dependencies": {
"@types/express": "^4.17.21",
"@types/jest": "^29.5.12",
"@types/node": "^20.14.7",
"axios": "^1.7.2",
"bcrypt": "^5.1.1",
"cors": "^2.8.5",
"csv-writer": "^1.6.0",
"dotenv": "^16.4.5",
"ejs": "^3.1.10",
"express": "^4.19.2",
"joi": "^17.13.3",
"jsonwebtoken": "^9.0.2",
"knex": "^3.1.0",
"mysql2": "^3.10.1",
"nodemailer": "^6.9.14",
"pdfkit": "^0.15.0",
"pdfmake": "^0.2.10",
"pino": "^9.2.0",
"pino-pretty": "^11.2.1",
"sqlite3": "^5.1.7",
"supertest": "^7.0.0",
"swagger-ui-express": "^5.0.1",
"ts-node": "^10.9.2",
"winston-loggly-bulk": "^3.3.0"
},
"devDependencies": {
"@types/bcrypt": "^5.0.2",
"@types/ejs": "^3.1.5",
"@types/jest": "^29.5.12",
"@types/js-yaml": "^4.0.9",
"@types/jsonwebtoken": "^9.0.6",
"@types/nodemailer": "^6.4.15",
"@types/pdfkit": "^0.13.4",
"@types/pdfmake": "^0.2.9",
"@types/pino": "^7.0.5",
"@types/supertest": "^6.0.2",
"@types/swagger-ui-express": "^4.1.6",
"@types/winston-loggly-bulk": "^3.0.6",
"jest": "^29.7.0",
"jest-mock": "^29.7.0",
"nodemon": "^3.1.9",
"ts-jest": "^29.1.5",
"typescript": "^5.5.2"
}
}