-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 1.57 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
{
"name": "bipayroll",
"version": "1.0.0",
"main": "index.js",
"scripts": {
"dev": "nodemon src/server.ts",
"build": "rimraf ./dist && tsc --outDir ./dist/src && echo 'dist folder created'",
"format": "prettier --write \"src/**/*.ts\" \"test/**/*.ts\"",
"start": "node dist/src/server.js",
"lint": "eslint \"{src,apps,libs,test}/**/*.ts\" --fix"
},
"keywords": [],
"author": "",
"license": "ISC",
"description": "",
"dependencies": {
"@types/bcryptjs": "^2.4.6",
"@types/cors": "^2.8.17",
"@types/express": "^4.17.21",
"@types/jsonwebtoken": "^9.0.7",
"@types/multer": "^1.4.12",
"@types/nodemailer": "^6.4.16",
"@types/otp-generator": "^4.0.2",
"@types/paystack": "^2.0.4",
"@types/uuid": "^10.0.0",
"axios": "^1.7.7",
"bcryptjs": "^2.4.3",
"cloudinary": "^2.5.0",
"cors": "^2.8.5",
"dotenv": "^16.4.5",
"express": "^4.21.0",
"handlebars": "^4.7.8",
"joi": "^17.13.3",
"jsonwebtoken": "^9.0.2",
"juice": "^11.0.0",
"moment": "^2.30.1",
"mongoose": "^8.6.3",
"multer": "^1.4.5-lts.1",
"nodemailer": "^6.9.15",
"nodemon": "^3.1.9",
"otp-generator": "^4.0.1",
"rimraf": "^6.0.1",
"tsc-node": "^0.0.3",
"uuid": "^10.0.0"
},
"devDependencies": {
"@types/node": "^22.7.4",
"@typescript-eslint/eslint-plugin": "^8.6.0",
"@typescript-eslint/parser": "^8.6.0",
"eslint": "^9.10.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"prettier": "^3.3.3",
"ts-node": "^10.9.2",
"typescript": "^5.6.2"
}
}