-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
52 lines (52 loc) · 1.42 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
{
"name": "authentication",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"dev": "nodemon server.js",
"lint": "eslint src/**/*.ts",
"format": "prettier --ignore-path .gitignore --write \"**/*.+(js|ts)\""
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"bcrypt": "^5.1.1",
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"dotenv": "^16.3.1",
"ejs": "^3.1.9",
"express": "^4.18.2",
"express-flash": "^0.0.2",
"express-session": "^1.17.3",
"google-auth-library": "^9.0.0",
"jsonwebtoken": "^9.0.1",
"nodemon": "^3.0.1",
"passport": "^0.6.0",
"passport-google-oauth": "^2.0.0",
"passport-google-oauth20": "^2.0.0",
"passport-jwt": "^4.0.1",
"passport-local": "^1.0.0",
"pg": "^8.11.3",
"pg-promise": "^11.5.4",
"web-push": "^3.6.6"
},
"repository": {
"type": "git",
"url": "git+https://github.com/IIT-BHU-inter-IIT-SDE-group-8/server.git"
},
"bugs": {
"url": "https://github.com/IIT-BHU-inter-IIT-SDE-group-8/server/issues"
},
"homepage": "https://github.com/IIT-BHU-inter-IIT-SDE-group-8/server#readme",
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^6.4.1",
"@typescript-eslint/parser": "^6.4.1",
"eslint": "^8.48.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-prettier": "^5.0.0",
"prettier": "^3.0.2",
"typescript": "^5.1.6"
}
}