We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d458074 commit af4d584Copy full SHA for af4d584
.prettierrc
@@ -0,0 +1,2 @@
1
+singleQuote: true
2
+semi: false
package.json
@@ -1,11 +1,10 @@
{
"name": "graphql-rest-api-demo",
3
"version": "0.0.1",
4
- "description":
5
- "A demo of what an equivalent REST API and GraphQL interface look like.",
+ "description": "A demo of what an equivalent REST API and GraphQL interface look like.",
6
"main": "graphql-server.js",
7
"scripts": {
8
- "test": "echo \"Error: no test specified\" && exit 1"
+ "prettify": "prettier --write *.js"
9
},
10
"author": "John Resig <[email protected]>",
11
"license": "MIT",
@@ -14,5 +13,8 @@
14
13
"express-graphql": "^0.6.11",
15
"graphql": "^0.11.7",
16
"mongoose": "^4.13.5"
+ },
17
+ "devDependencies": {
18
+ "prettier": "1.9.2"
19
}
20
0 commit comments