-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.5 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.5 KB
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
53
54
55
{
"name": "authentication-as-a-service",
"version": "1.0.0",
"description": "Authentication as a service.",
"main": "index.ts",
"scripts": {
"start": "nodemon --exec ts-node ./index.ts",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/hopeogbons/authentication-as-a-service.git"
},
"keywords": [
"SaaS",
"AaaS",
"Authentication"
],
"author": "Engr. Hope Ogbons",
"license": "ISC",
"bugs": {
"url": "https://github.com/hopeogbons/authentication-as-a-service/issues"
},
"homepage": "https://github.com/hopeogbons/authentication-as-a-service#readme",
"dependencies": {
"@graphql-tools/utils": "^10.1.2",
"apollo-server-express": "^3.13.0",
"bcryptjs": "^2.4.3",
"connect-redis": "^7.1.1",
"cors": "^2.8.5",
"dotenv": "^16.4.5",
"express": "^4.17.21",
"express-graphql": "^0.12.0",
"graphql": "^16.8.1",
"jsonwebtoken": "^9.0.2",
"mongoose": "^8.2.4",
"passport": "^0.7.0",
"passport-local": "^1.0.0",
"redis": "^4.6.13"
},
"devDependencies": {
"@types/bcryptjs": "^2.4.6",
"@types/connect-redis": "^0.0.23",
"@types/cors": "^2.8.17",
"@types/express": "^4.17.21",
"@types/express-session": "^1.18.0",
"@types/jsonwebtoken": "^9.0.6",
"@types/node": "^20.12.2",
"@types/passport": "^1.0.16",
"@types/passport-local": "^1.0.38",
"nodemon": "^3.1.0",
"ts-node": "^10.9.2",
"typescript": "^5.4.3"
}
}