-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 746 Bytes
/
Copy pathpackage.json
File metadata and controls
30 lines (30 loc) · 746 Bytes
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
{
"name": "auth-backend-template-graphql",
"version": "1.0.0",
"description": "a backend template for auth in GraphQL",
"main": "index.js",
"author": "Manuel_Dev",
"license": "MIT",
"dependencies": {
"@apollo/server": "^4.4.0",
"@types/bcryptjs": "^2.4.2",
"@types/jsonwebtoken": "^9.0.1",
"apollo-server-errors": "^3.3.1",
"bcryptjs": "^2.4.3",
"dotenv": "^16.0.3",
"graphql": "^16.6.0",
"jsonwebtoken": "^9.0.0",
"lodash": "^4.17.21",
"mongoose": "^6.9.1"
},
"scripts": {
"dev": "nodemon src/server.ts",
"build": "tsc -p .",
"start": "node dist/server.js"
},
"devDependencies": {
"@types/node": "^18.13.0",
"ts-node": "^10.9.1",
"typescript": "^4.9.5"
}
}