forked from vote4hk/warsinhk
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
128 lines (128 loc) · 3.84 KB
/
package.json
File metadata and controls
128 lines (128 loc) · 3.84 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
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
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
{
"name": "gatsby-starter-default",
"private": true,
"description": "A simple starter to get up and developing quickly with Gatsby",
"version": "0.1.0",
"author": "Kyle Mathews <mathews.kyle@gmail.com>",
"dependencies": {
"@datepicker-react/styled": "^2.3.1",
"@material-ui/core": "^4.8.3",
"@material-ui/icons": "^4.5.1",
"@material-ui/lab": "^4.0.0-alpha.40",
"c3": "^0.7.12",
"csvtojson": "^2.0.10",
"d3": "^5.15.0",
"d3-svg-legend": "^2.25.6",
"dotenv": "^8.2.0",
"echarts": "^4.7.0",
"echarts-for-react": "^2.0.15-beta.1",
"eslint": "^6.8.0",
"file-loader": "^5.1.0",
"flickity": "^2.2.1",
"gatsby": "^2.18.12",
"gatsby-image": "^2.2.34",
"gatsby-plugin-alias-imports": "^1.0.5",
"gatsby-plugin-google-analytics": "^2.1.34",
"gatsby-plugin-manifest": "^2.2.31",
"gatsby-plugin-material-ui": "^2.1.6",
"gatsby-plugin-react-helmet": "^3.1.16",
"gatsby-plugin-react-svg": "^3.0.0",
"gatsby-plugin-remove-serviceworker": "^1.0.0",
"gatsby-plugin-remove-trailing-slashes": "^2.2.1",
"gatsby-plugin-robots-txt": "^1.5.0",
"gatsby-plugin-sharp": "^2.3.5",
"gatsby-plugin-sitemap": "^2.2.26",
"gatsby-plugin-styled-components": "^3.1.18",
"gatsby-source-filesystem": "^2.1.40",
"gatsby-transformer-json": "^2.2.25",
"gatsby-transformer-sharp": "^2.3.7",
"graphql-request": "^1.8.2",
"i18next": "^19.0.3",
"leaflet": "^1.6.0",
"leaflet-pixi-overlay": "^1.8.1",
"leaflet.markercluster": "^1.4.1",
"lodash.find": "^4.6.0",
"lodash.flatten": "^4.4.0",
"lodash.get": "^4.4.2",
"lodash.groupby": "^4.6.0",
"lodash.isempty": "^4.4.0",
"lodash.isequal": "^4.5.0",
"lodash.max": "^4.0.1",
"lodash.times": "^4.3.2",
"lodash.toarray": "^4.4.0",
"lodash.uniq": "^4.5.0",
"lodash.uniqby": "^4.7.0",
"moment": "^2.24.0",
"node-fetch": "^2.6.0",
"pixi.js-legacy": "^5.2.1",
"prop-types": "^15.7.2",
"react": "^16.12.0",
"react-dom": "^16.12.0",
"react-full-screen": "^0.2.4",
"react-helmet": "^5.2.1",
"react-i18next": "^11.3.0",
"react-icons": "^3.9.0",
"react-responsive": "^8.0.3",
"react-select": "3.0.8",
"react-share": "^4.0.1",
"react-virtualized": "^9.21.2",
"rss-parser": "^3.7.4",
"styled-components": "^5.0.1",
"topojson-client": "^3.1.0"
},
"devDependencies": {
"@babel/core": "^7.8.0",
"@storybook/addon-actions": "^5.3.0",
"@storybook/addon-links": "^5.3.0",
"@storybook/addons": "^5.3.0",
"@storybook/cli": "^5.3.0",
"@storybook/react": "^5.3.0",
"babel-eslint": "^10.0.3",
"babel-loader": "^8.0.6",
"eslint-config-react-app": "^5.1.0",
"eslint-plugin-flowtype": "^4.6.0",
"eslint-plugin-import": "^2.20.0",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-react": "^7.18.0",
"eslint-plugin-react-hooks": "^2.3.0",
"husky": "^4.2.1",
"lint-staged": "^10.0.2",
"prettier": "^1.19.1"
},
"keywords": [
"gatsby"
],
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,css,json,md}": [
"prettier --write"
],
"*.js": [
"yarn lint:fix",
"yarn lint --max-warnings 0"
]
},
"license": "MIT",
"scripts": {
"build": "gatsby build",
"develop": "gatsby develop",
"format": "prettier --write \"**/*.{js,jsx,json,md}\"",
"start": "npm run develop",
"serve": "gatsby serve",
"clean": "gatsby clean",
"lint": "eslint --ignore-path .gitignore . --ext ts --ext tsx --ext js --ext jsx",
"lint:fix": "yarn lint --fix",
"test": "echo \"Write tests! -> https://gatsby.dev/unit-testing\" && exit 1"
},
"repository": {
"type": "git",
"url": "https://github.com/gatsbyjs/gatsby-starter-default"
},
"bugs": {
"url": "https://github.com/gatsbyjs/gatsby/issues"
}
}