-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
37 lines (37 loc) · 1.07 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
{
"name": "messmanager",
"version": "1.0.0",
"description": "To create a Mess Management System for college hostels.",
"main": "index.js",
"scripts": {
"prettify": "npx prettier --write .",
"start": "tsc -p . && node build/app.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mindwebs/MessManager.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/mindwebs/MessManager/issues"
},
"homepage": "https://github.com/mindwebs/MessManager#readme",
"dependencies": {
"bcryptjs": "^2.4.3",
"dotenv": "^16.0.1",
"express": "^4.18.1",
"jsonwebtoken": "^8.5.1",
"mongoose": "^6.5.3",
"node": "^16.17.0"
},
"devDependencies": {
"@types/bcryptjs": "^2.4.2",
"@types/express": "^4.17.13",
"@types/jsonwebtoken": "^8.5.9",
"@types/mongoose": "^5.11.97",
"@types/node": "^18.7.13"
}
}