-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
59 lines (59 loc) · 1.48 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
54
55
56
57
58
59
{
"name": "authentication-with-graphql-passport-and-react-starter",
"version": "0.1.0",
"description": "Starter project accompanying a series of articles on authentication with GraphQL",
"keywords": [
"graphql",
"auth",
"authentication",
"passport"
],
"author": {
"name": "Johannes Kettmann",
"email": "[email protected]",
"url": "https://jkettmann.com"
},
"repository": {
"type": "git",
"url": "git://github.com/jkettmann/authentication-with-graphql-passport-and-react-starter.git"
},
"license": "MIT",
"dependencies": {
"apollo-server-express": "^2.9.6",
"express": "^4.17.1",
"express-session": "^1.17.0",
"graphql": "^14.5.8",
"nodemon": "^1.19.3",
"passport": "^0.4.0",
"react": "^16.10.2",
"react-dom": "^16.10.2",
"react-scripts": "3.2.0",
"uuid": "^3.3.3"
},
"scripts": {
"start": "npm run start:api",
"start:app": "react-scripts start",
"start:api": "nodemon --watch ./api --exec \"babel-node --inspect --presets=@babel/env ./api/index.js\"",
"build": "react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject"
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@babel/node": "^7.6.3"
}
}