-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 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
{
"name": "next-apollo-auth-example",
"version": "1.0.0",
"description": "A simple authentication example with Next.js/Apollo/MongoDB using JWT.",
"dependencies": {
"apollo-client-preset": "^1.0.6",
"apollo-link-http": "^1.3.2",
"apollo-server-express": "^1.3.2",
"apollo-utilities": "^1.0.4",
"babel-runtime": "^6.26.0",
"bcrypt": "^1.0.3",
"body-parser": "^1.18.2",
"cookie-parser": "^1.4.3",
"cross-env": "^5.1.3",
"express": "^4.16.2",
"gql-merge": "0.0.6",
"graphql": "^0.12.3",
"graphql-tag": "^2.6.1",
"graphql-tools": "^2.18.0",
"jsonwebtoken": "^8.1.0",
"mongodb": "^3.0.1",
"next": "^4.2.2",
"next-apollo": "^1.0.10",
"next-routes": "^1.2.0",
"react": "^16.2.0",
"react-apollo": "^2.0.4",
"react-apollo-mutation-state": "^1.0.1",
"react-dom": "^16.2.0",
"redux": "^3.7.2"
},
"scripts": {
"dev": "cross-env NODE_ENV=development node src/server",
"build": "cross-env NODE_ENV=production next build",
"start": "cross-env NODE_ENV=production node src/server",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/thealjey/next-apollo-auth-example.git"
},
"keywords": [],
"author": "Eugene Kuzmenko",
"license": "MIT",
"bugs": {
"url": "https://github.com/thealjey/next-apollo-auth-example/issues"
},
"homepage": "https://github.com/thealjey/next-apollo-auth-example#readme"
}