-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 905 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 905 Bytes
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
{
"name": "GraphQL tuts",
"version": "1.0.0",
"description": "GraphQL is an open source server-side technology which was developed by Facebook to optimize RESTful API calls. It is an execution engine and a data query language",
"main": "server.js",
"dependencies": {
"apollo-server-express": "^2.4.8",
"cors": "^2.8.5",
"express": "^4.16.4",
"express-graphql": "^0.9.0",
"graphql": "^14.5.4",
"lodash": "^4.17.15",
"mongoose": ">=5.7.5"
},
"devDependencies": {},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "node server.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/techieinme/GraphQL.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/techieinme/GraphQL/issues"
},
"homepage": "https://github.com/techieinme/GraphQL#readme"
}