-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
113 lines (113 loc) · 3.58 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
100
101
102
103
104
105
106
107
108
109
110
111
112
113
{
"name": "dominion",
"version": "0.2.3",
"private": true,
"homepage": "https://dev.dominion.africa",
"dependencies": {
"@apollo/react-hooks": "^3.1.3",
"@apollo/react-ssr": "^3.1.3",
"@fortawesome/fontawesome-free": "^5.9.0",
"@fortawesome/fontawesome-svg-core": "^1.2.19",
"@fortawesome/free-brands-svg-icons": "^5.6.3",
"@fortawesome/free-solid-svg-icons": "^5.6.3",
"@fortawesome/react-fontawesome": "^0.1.4",
"@hurumap-ui/charts": "^0.3.5-alpha.42",
"@hurumap-ui/core": "^0.3.5-alpha.42",
"@material-ui/core": "^4.6.0",
"@material-ui/icons": "^4.5.1",
"@types/react": "^16.9.11",
"apollo-boost": "^0.4.3",
"apollo-cache": "^1.3.2",
"apollo-cache-inmemory": "^1.6.3",
"apollo-client": "^2.6.4",
"apollo-link": "^1.2.13",
"apollo-link-http": "^1.5.16",
"apollo-utilities": "^1.3.2",
"axios": "^0.28.0",
"babel-plugin-transform-imports": "^2.0.0",
"classnames": "^2.2.6",
"dequal": "^1.0.0",
"graphql": "^14.4.2",
"graphql-tag": "^2.10.1",
"isomorphic-unfetch": "^3.0.0",
"leaflet": "^1.7.1",
"lodash": "^4.17.15",
"next": "^11.1.3",
"next-images": "^1.2.0",
"papaparse": "^5.3.1",
"prop-types": "^15.7.2",
"react": "^17.0.1",
"react-apollo": "^3.1.3",
"react-apollo-hooks": "^0.5.0",
"react-dom": "^17.0.1",
"react-router": "^5.0.1",
"react-router-dom": "^5.0.1",
"regenerator-runtime": "^0.13.9",
"request": "^2.88.2",
"shortid": "^2.2.15",
"simplebar": "^5.0.7",
"simplebar-react": "^2.0.10",
"typescript": "*",
"victory": "^35.10.0",
"webpack": "^5.94.0"
},
"devDependencies": {
"@babel/core": "^7.7.2",
"babel-eslint": "^10.0.3",
"babel-plugin-module-resolver": "^3.2.0",
"babel-plugin-syntax-dynamic-import": "^6.18.0",
"eslint": "^7.32.0",
"eslint-config-airbnb": "^18.0.1",
"eslint-config-prettier": "^6.5.0",
"eslint-import-resolver-babel-module": "^5.1.0",
"eslint-plugin-import": "^2.15.0",
"eslint-plugin-json": "^2.0.1",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-module-resolver": "^0.15.0",
"eslint-plugin-prettier": "^3.0.1",
"eslint-plugin-react": "^7.12.4",
"eslint-plugin-react-hooks": "^4.6.0",
"husky": "^3.0.9",
"lint-staged": "^9.4.2",
"prettier": "^1.19.1"
},
"scripts": {
"commitChartDefinitions": "git add src/data/charts.json && (git diff-index --quiet HEAD || (git commit -m 'updated chart ids' && git push))",
"applyIdsToChartDefinitions": "node scripts/chartsDefinitionsApplyUniqueId.js",
"dev": "NODE_OPTIONS=--openssl-legacy-provider next",
"prestart": "yarn applyIdsToChartDefinitions",
"start": "next start",
"prebuild": "yarn applyIdsToChartDefinitions",
"build": "NODE_OPTIONS=--openssl-legacy-provider next build",
"test": "next test",
"lint": "yarn eslint --fix ./",
"lint-staged": "yarn eslint --fix"
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"husky": {
"hooks": {
"pre-commit": "yarn applyIdsToChartDefinitions && git add src/data/charts.json && lint-staged"
}
},
"lint-staged": {
"src/**/*.{js,json,scss,md}": [
"yarn lint-staged",
"git add"
]
},
"packageManager": "[email protected]+sha512.a6b2f7906b721bba3d67d4aff083df04dad64c399707841b7acf00f6b133b7ac24255f2652fa22ae3534329dc6180534e98d17432037ff6fd140556e2bb3137e"
}