-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 1017 Bytes
/
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
{
"name": "user-auth",
"version": "1.0.0",
"main": "server.ts",
"author": "Jeyhun Abilov",
"repository": "https://github.com/Abilov599/User-Auth-with-GraphQL-ApolloServer",
"type": "module",
"scripts": {
"compile": "tsc",
"start": "clear && rm -rf ./dist && yarn run compile && node ./dist/index.js"
},
"license": "MIT",
"dependencies": {
"@apollo/server": "^4.9.1",
"bcrypt": "^5.1.0",
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"graphql": "^16.7.1",
"jsonwebtoken": "^9.0.1",
"mongoose": "^7.4.2",
"qrcode": "^1.5.3",
"speakeasy": "^2.0.0"
},
"devDependencies": {
"@types/bcrypt": "^5.0.0",
"@types/cookie-parser": "^1.4.3",
"@types/cors": "^2.8.13",
"@types/jsonwebtoken": "^9.0.2",
"@types/mongoose": "^5.11.97",
"@types/morgan": "^1.9.4",
"@types/node": "^20.4.8",
"@types/qrcode": "^1.5.1",
"@types/speakeasy": "^2.0.7",
"typescript": "^5.1.6"
}
}