-
Notifications
You must be signed in to change notification settings - Fork 27
/
Copy pathpackage.json
37 lines (37 loc) · 846 Bytes
/
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
{
"name": "covid19api",
"version": "1.0.0",
"description": "Playing with GraphQL and COVID-19 API",
"main": "server.js",
"scripts": {
"start": "node src/server.js",
"server": "nodemon src/server"
},
"repository": {
"type": "git",
"url": "git+https://github.com/vinitshahdeo/covid19api.git"
},
"keywords": [
"covid19",
"corona",
"api",
"india",
"graphql"
],
"author": "Vinit Shahdeo <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/vinitshahdeo/covid19api/issues"
},
"homepage": "https://github.com/vinitshahdeo/covid19api#readme",
"dependencies": {
"axios": "^0.19.2",
"express": "^4.17.1",
"express-graphql": "^0.9.0",
"graphql": "^15.1.0",
"lodash": "^4.17.15"
},
"devDependencies": {
"nodemon": "^2.0.4"
}
}