-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.76 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.76 KB
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
{
"name": "apollo",
"version": "1.0.0",
"description": "GraphQL is an open-source data query and manipulation language for APIs, and a runtime for fulfilling queries with existing data. Basically, GraphQL is a query language designed to build client application by providing an intuitive and flexible syntax for describing their data requirement. It was developed internally by Facebook in 2012. It was publicly released in 2015. It provides an approach to develop web APIs and has been compared and contrasted with REST and other web service architectures.",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"nodemon": "npx nodemon",
"start": "npm run nodemon",
"lint": "eslint ./src",
"lint:fix": "npm run lint --fix"
},
"repository": {
"type": "git",
"url": "git+https://github.com/AryanSinghalGit/apollo-server.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/AryanSinghalGit/apollo-server/issues"
},
"homepage": "https://github.com/AryanSinghalGit/apollo-server#readme",
"devDependencies": {
"@babel/core": "^7.10.2",
"@babel/node": "^7.10.1",
"@babel/preset-env": "^7.10.2",
"eslint": "^6.8.0",
"eslint-config-airbnb": "^18.1.0",
"eslint-plugin-import": "^2.21.1",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-react": "^7.20.0",
"eslint-plugin-react-hooks": "^2.5.0",
"nodemon": "^2.0.4"
},
"dependencies": {
"apollo-datasource-rest": "^0.9.2",
"apollo-server": "^2.14.3",
"apollo-server-express": "^2.14.2",
"babel-eslint": "^10.1.0",
"body-parser": "^1.19.0",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "4.17.1",
"graphql": "^15.1.0",
"merge-graphql-schemas": "^1.7.8"
}
}