-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
41 lines (41 loc) · 1.02 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
{
"name": "employee-management",
"version": "1.0.0",
"description": "",
"main": "server.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "tsc && node ./backend/build/server.js",
"watch": "tsc -w",
"dev": "nodemon ./backend/server.ts",
"build": "tsc -p ."
},
"author": "",
"license": "ISC",
"dependencies": {
"@types/bcrypt": "^5.0.0",
"@types/express": "^4.17.13",
"@types/node": "^18.7.14",
"bcrypt": "^5.0.1",
"cors": "^2.8.5",
"dotenv": "^16.0.2",
"express": "^4.18.1",
"jsonwebtoken": "^8.5.1",
"mongoose": "^6.5.4",
"multer": "^1.4.5-lts.1",
"nodemailer": "^6.8.0",
"nodemon": "^2.0.19",
"react-hook-form": "^7.36.0",
"socket.io": "^4.5.3",
"typescript": "^4.8.2",
"yup": "^0.32.11"
},
"devDependencies": {
"@types/cors": "^2.8.12",
"@types/jsonwebtoken": "^8.5.9",
"@types/multer": "^1.4.7",
"@types/nodemailer": "^6.4.6",
"morgan": "^1.10.0",
"ts-node": "^10.9.1"
}
}