-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.43 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
{
"name": "smart-finance-backend",
"version": "1.0.0",
"main": "index.js",
"scripts": {
"tsc": "tsc",
"dev": "set NODE_ENV=development && ts-node-dev -r tsconfig-paths/register src/index.ts",
"build": "rimraf ./dist && tsc && tsc-alias",
"start": "set NODE_ENV=production && node ./dist/index.js",
"seed": "set NODE_ENV=development && ts-node-dev -r tsconfig-paths/register src/database/seed/seed-database.ts",
"prepare": "husky install"
},
"keywords": [],
"author": "",
"license": "ISC",
"description": "",
"dependencies": {
"bcryptjs": "^2.4.3",
"dotenv": "^16.4.5",
"express": "^4.21.1",
"http-status-codes": "^2.3.0",
"jsonwebtoken": "^9.0.2",
"mongoose": "^8.8.0",
"morgan": "^1.10.0",
"nodemailer": "^6.9.16",
"otp-generator": "^4.0.1",
"path": "^0.12.7",
"socket.io": "^4.8.1",
"winston": "^3.16.0",
"zod": "^3.23.8"
},
"devDependencies": {
"@types/bcryptjs": "^2.4.6",
"@types/dotenv": "^8.2.3",
"@types/express": "^5.0.0",
"@types/jsonwebtoken": "^9.0.7",
"@types/mongoose": "^5.11.97",
"@types/morgan": "^1.9.9",
"@types/nodemailer": "^6.4.16",
"@types/otp-generator": "^4.0.2",
"husky": "^9.1.6",
"rimraf": "^6.0.1",
"ts-node-dev": "^2.0.0",
"ts-patch": "^3.2.1",
"tsc-alias": "^1.8.10",
"tsconfig-paths": "^4.2.0",
"typescript": "^5.6.3",
"typescript-transform-paths": "^3.5.1"
}
}