generated from ALCOpenSource/projectTemplate
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.26 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
{
"name": "mentormanagementsystem",
"version": "0.0.1",
"description": "Mentor management system",
"main": "index.js",
"type": "module",
"scripts": {
"build": "npx tsc",
"start": "node dist/index.js",
"dev": "concurrently \"npx tsc --watch\" \"nodemon -q dist/index.js\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/antonykariu/mentormanagementsystem.git"
},
"author": "kariuantony@gmail.com",
"license": "ISC",
"bugs": {
"url": "https://github.com/antonykariu/mentormanagementsystem/issues"
},
"homepage": "https://github.com/antonykariu/mentormanagementsystem#readme",
"devDependencies": {
"@types/bcrypt": "^5.0.0",
"@types/express": "^4.17.16",
"@types/express-session": "^1.17.5",
"@types/jsonwebtoken": "^9.0.1",
"@types/node": "^18.11.18",
"concurrently": "^7.6.0",
"nodemon": "^2.0.20",
"prisma": "^4.10.0",
"ts-node": "^10.9.1",
"typedoc": "^0.23.24",
"typescript": "^4.9.4"
},
"dependencies": {
"@prisma/client": "^4.10.0",
"bcrypt": "^5.1.0",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"express-async-errors": "^3.1.1",
"express-session": "^1.17.3",
"joi": "^17.7.0",
"jsonwebtoken": "^9.0.0",
"uuid": "^9.0.0"
}
}