-
Notifications
You must be signed in to change notification settings - Fork 36
/
package.json
46 lines (46 loc) · 1.26 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
{
"name": "next-auth-apollo",
"version": "0.1.0",
"description": "Authentication Example with Next.js and Apollo GraphQL",
"main": "index.js",
"scripts": {
"dev": "nodemon --watch data --watch server server",
"build": "next build",
"start": "NODE_ENV=production node server",
"snyk-protect": "snyk protect",
"prepare": "npm run snyk-protect"
},
"author": "",
"license": "MIT",
"dependencies": {
"apollo-client-preset": "^1.0.5",
"apollo-link-context": "^1.0.7",
"apollo-server-express": "^2.14.2",
"body-parser": "^1.18.2",
"connect-mongo": "^3.0.0",
"cookie-parser": "^1.4.3",
"dotenv": "^4.0.0",
"express": "^4.19.2",
"express-session": "^1.15.6",
"express-validator": "^6.14.2",
"graphql": "^0.11.7",
"graphql-tag": "^2.6.0",
"graphql-tools": "^2.12.0",
"isomorphic-fetch": "^3.0.0",
"isomorphic-unfetch": "^2.1.1",
"mongoose": "^5.13.20",
"mongoose-mongodb-errors": "0.0.2",
"next": "^13.5.4",
"passport": "^0.6.0",
"passport-github": "^1.1.0",
"passport-local-mongoose": "^4.4.0",
"react": "^16.7.0",
"react-apollo": "^2.0.4",
"react-dom": "^16.7.0",
"snyk": "^1.1064.0"
},
"devDependencies": {
"nodemon": "^2.0.20"
},
"snyk": true
}