-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.47 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
53
{
"dependencies": {
"apollo-server-core": "^3.8.2",
"apollo-server-express": "^3.8.2",
"bcryptjs": "^2.4.3",
"class-validator": "^0.13.2",
"cors": "^2.8.5",
"dotenv": "^16.0.1",
"express": "^4.18.1",
"graphql": "^15.8.0",
"gravatar": "^1.8.2",
"jsonwebtoken": "^8.5.1",
"lodash": "^4.17.21",
"mongoose": "^6.3.6",
"nodemailer": "^6.7.5",
"redis": "^4.1.0",
"remove": "^0.1.5",
"type-graphql": "^1.1.1",
"typeorm": "^0.3.6",
"unique-names-generator": "^4.7.1"
},
"name": "user-authentication",
"description": "An effective graphql implementation of login, signup, forget password, email verification and many more",
"version": "1.0.0",
"main": "index.js",
"devDependencies": {
"@types/bcrypt": "^5.0.0",
"@types/bcryptjs": "^2.4.2",
"@types/dotenv": "^8.2.0",
"@types/express": "^4.17.13",
"@types/gravatar": "^1.8.3",
"@types/jsonwebtoken": "^8.5.8",
"@types/lodash": "^4.14.182",
"@types/node": "^17.0.42",
"@types/nodemailer": "^6.4.4",
"nodemon": "^2.0.16",
"ts-node": "^10.8.1",
"typescript": "^4.7.3"
},
"scripts": {
"start": "nodemon ./src/server.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/cruzelx/User-Authentication.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/cruzelx/User-Authentication/issues"
},
"homepage": "https://github.com/cruzelx/User-Authentication#readme"
}