mirror of
https://github.com/terribleplan/next.js.git
synced 2024-01-19 02:48:18 +00:00
Fixed package.json (#4654)
Fix on relay script to proper ignore schema files added graphql as explict dependency
This commit is contained in:
parent
82bdd43285
commit
56937fd22c
|
@ -7,7 +7,7 @@
|
||||||
"dev": "next",
|
"dev": "next",
|
||||||
"build": "next build",
|
"build": "next build",
|
||||||
"start": "next start",
|
"start": "next start",
|
||||||
"relay": "relay-compiler --src ./ --exclude '**/.next/**' '**/node_modules/**' '**/test/**' '**/__generated__/**' --exclude './schema/**' --schema ./schema/schema.graphql",
|
"relay": "relay-compiler --src ./ --exclude '**/.next/**' '**/node_modules/**' '**/test/**' '**/__generated__/**' --exclude '**/schema/**' --schema ./schema/schema.graphql",
|
||||||
"schema": "graphql get-schema dev"
|
"schema": "graphql get-schema dev"
|
||||||
},
|
},
|
||||||
"author": "",
|
"author": "",
|
||||||
|
@ -15,6 +15,7 @@
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"dotenv": "^4.0.0",
|
"dotenv": "^4.0.0",
|
||||||
"dotenv-webpack": "^1.5.4",
|
"dotenv-webpack": "^1.5.4",
|
||||||
|
"graphql": "^0.13.2",
|
||||||
"isomorphic-unfetch": "^2.0.0",
|
"isomorphic-unfetch": "^2.0.0",
|
||||||
"next": "latest",
|
"next": "latest",
|
||||||
"react": "^16.2.0",
|
"react": "^16.2.0",
|
||||||
|
|
Loading…
Reference in a new issue