-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
92 lines (92 loc) · 2.65 KB
/
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
{
"name": "my-coronavirus-map",
"description": "Demo repo for blog post",
"version": "0.2.0",
"author": {
"name": "Ankush Kumar",
"email": "[email protected]",
"url": "https://www.codechef.com/users/hack14398"
},
"dependencies": {
"axios": "^0.21.1",
"gatsby": "^2.28.2",
"gatsby-plugin-manifest": "^2.9.1",
"gatsby-plugin-react-helmet": "^3.7.0",
"gatsby-plugin-react-leaflet": "2.0.13",
"gatsby-plugin-resolve-src": "^2.1.0",
"gatsby-plugin-sass": "^2.8.0",
"gatsby-source-filesystem": "^2.8.1",
"gatsby-source-graphql": "^2.11.0",
"leaflet": "^1.7.1",
"path": "^0.12.7",
"prop-types": "^15.7.2",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"react-helmet": "^6.1.0",
"react-icons": "^4.1.0",
"react-leaflet": "^3.0.5",
"sass": "^1.30.0"
},
"devDependencies": {
"babel-eslint": "^10.1.0",
"babel-jest": "^26.6.3",
"babel-preset-gatsby": "^0.8.0",
"cypress": "^6.2.0",
"enzyme": "^3.11.0",
"eslint": "^7.16.0",
"eslint-config-zurgbot": "^0.1.0",
"eslint-plugin-cypress": "^2.11.2",
"eslint-plugin-react": "^7.21.5",
"eslint-plugin-react-hooks": "^4.2.0",
"husky": "^4.3.5",
"jest": "^26.6.3",
"lint-staged": "^10.5.3",
"prettier": "^2.2.1",
"prettier-eslint": "^12.0.0",
"prettier-eslint-cli": "^5.0.0",
"start-server-and-test": "^1.11.6"
},
"keywords": [
"gatsby",
"sass",
"leaflet",
"mapping",
"maps"
],
"license": "MIT",
"scripts": {
"build": "GATSBY_EXPERIMENTAL_PAGE_BUILD_ON_DATA_CHANGES=true gatsby build --log-pages",
"bump": "npm version",
"clean": "gatsby clean",
"cy:open": "cypress open",
"cy:run": "cypress run --headless",
"cy:verify": "cypress verify",
"develop": "gatsby develop",
"format": "prettier-eslint --eslint-config-path ./config/eslint.config.js --write $PWD/'**/*.js'",
"lint": "eslint -c ./config/eslint.config.js . --ext .js",
"start": "yarn develop",
"serve": "gatsby serve",
"test": "jest --config ./config/jest.config.js",
"test:e2e:open": "start-server-and-test develop http://localhost:8000 cy:open",
"test:e2e:run": "start-server-and-test develop http://localhost:8000 cy:run"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"**/*.js": [
"yarn format",
"yarn lint"
]
},
"homepage": "https://gatsby-starter-leaflet.netlify.app/",
"repository": {
"type": "git",
"url": "https://github.com/hacker14398/coronavirus-cases-dashborad"
},
"bugs": {
"url": "https://github.com/hacker14398/coronavirus-cases-dashborad/issues"
}
}