forked from electinth/election-live
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
99 lines (99 loc) · 2.63 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
93
94
95
96
97
98
99
{
"name": "election-live",
"private": true,
"description": "See Election results LIVE!",
"version": "1.0.2",
"license": "MIT",
"scripts": {
"build": "gatsby build",
"develop": "gatsby develop",
"format": "prettier --write src/**/*.{js,jsx}",
"start": "npm run develop",
"serve": "gatsby serve",
"test": "jest"
},
"dependencies": {
"@emotion/core": "^10.0.9",
"@emotion/styled": "^10.0.9",
"@fortawesome/fontawesome-free-brands": "^5.0.13",
"@fortawesome/fontawesome-svg-core": "^1.2.16",
"@fortawesome/free-regular-svg-icons": "^5.8.0",
"@fortawesome/free-solid-svg-icons": "^5.8.0",
"@fortawesome/react-fontawesome": "^0.1.4",
"@reach/visually-hidden": "^0.1.2",
"@sentry/browser": "^4.6.5",
"add": "^2.0.6",
"amplitude-js": "^5.0.0",
"axios": "^0.18.0",
"d3": "^5.7.0",
"d3-array": "^2.0.3",
"d3-format": "^1.3.2",
"d3-scale": "^2.2.2",
"d3-selection": "^1.4.0",
"d3-transition": "^1.2.0",
"d3kit": "^3.2.0",
"debug": "^4.1.1",
"fuse.js": "^3.4.4",
"gatsby": "^2.1.31",
"gatsby-plugin-emotion": "^4.0.6",
"gatsby-plugin-facebook-pixel": "^1.0.3",
"gatsby-plugin-google-analytics": "^2.0.17",
"gatsby-plugin-htaccess": "^1.1.1",
"gatsby-plugin-layout": "^1.0.13",
"gatsby-plugin-manifest": "^2.0.24",
"gatsby-plugin-netlify": "^2.0.13",
"gatsby-plugin-react-helmet": "^3.0.10",
"gatsby-plugin-web-font-loader": "^1.0.4",
"lodash": "^4.17.11",
"lunr": "^2.3.6",
"mobx": "^5.9.0",
"moment": "^2.24.0",
"normalize.css": "^8.0.1",
"react": "^16.8.4",
"react-d3kit": "^2.0.0",
"react-dom": "^16.8.4",
"react-helmet": "^5.2.0",
"reselect": "^4.0.0",
"semver": "^5.6.0",
"thailand-party-list-calculator": "^1.0.2",
"visibilityjs": "^2.0.2",
"yarn": "^1.13.0"
},
"devDependencies": {
"babel-jest": "^24.5.0",
"babel-preset-gatsby": "^0.1.9",
"doctoc": "^1.4.0",
"esm": "^3.2.18",
"husky": "^1.3.1",
"identity-obj-proxy": "^3.0.0",
"jest": "^24.5.0",
"jest-junit": "^6.3.0",
"lint-staged": "^8.1.5",
"prettier": "^1.16.4",
"react-test-renderer": "^16.8.4",
"typescript": "^3.3.3333"
},
"repository": {
"type": "git",
"url": "https://github.com/codeforthailand/election-live"
},
"bugs": {
"url": "https://github.com/codeforthailand/election-live/issues"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,json,css}": [
"prettier --write",
"git add"
],
"README.md": [
"doctoc",
"prettier --write",
"git add"
]
}
}