-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
120 lines (120 loc) · 3.57 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
114
115
116
117
118
119
120
{
"private": true,
"type": "module",
"scripts": {
"dev": "yarn exe scripts/launch-next-js-dev-server.ts",
"exe": "node --loader ts-node/esm/transpile-only --es-module-specifier-resolution=node --require=suppress-experimental-warnings",
"fix": "npm-run-all --continue-on-error \"fix:*\"",
"fix:eslint": "next lint --fix --report-unused-disable-directives=error",
"fix:markdownlint": "markdownlint --fix .",
"fix:prettier": "prettier --cache --write .",
"fix:yarn-dedupe": "yarn dedupe",
"lint": "npm-run-all --continue-on-error \"lint:*\"",
"lint:eslint": "next lint --report-unused-disable-directives=error",
"lint:markdownlint": "markdownlint .",
"lint:prettier": "prettier --cache --check .",
"lint:tsc": "tsc --project .",
"lint:yarn-dedupe": "yarn dedupe --check",
"postinstall": "husky install",
"test": "jest"
},
"lint-staged": {
"**/*": [
"eslint --fix",
"markdownlint --fix",
"prettier --write"
]
},
"resolutions": {
"@xmldom/xmldom": "^0.8.6"
},
"dependencies": {
"@mapbox/geojson-rewind": "^0.5.2",
"@next/eslint-plugin-next": "^12.1.5",
"@visx/geo": "^2.1.2",
"@visx/gradient": "^2.1.0",
"clipboardy": "^3.0.0",
"d3-array": "^3.1.6",
"d3-color": "^3.1.0",
"d3-geo": "^3.0.1",
"d3-interpolate": "^3.0.1",
"d3-scale": "^4.0.2",
"d3-scale-chromatic": "^3.0.0",
"deromanize": "^1.0.0",
"geojson": "^0.5.0",
"get-port": "^6.1.2",
"lodash-es": "^4.17.21",
"next": "^12.1.5",
"next-remote-watch": "^1.0.0",
"react": "^18.0.0",
"react-dom": "^18.0.0",
"react-use": "^17.3.2",
"styled-components": "^5.3.5",
"styled-normalize": "^8.0.7",
"tagged-template-noop": "^2.1.1",
"wtf_wikipedia": "^10.0.0"
},
"devDependencies": {
"@kachkaev/eslint-config-react": "^0.4.5",
"@kachkaev/markdownlint-config": "^0.3.0",
"@kachkaev/prettier-config": "^1.4.0",
"@mapbox/tilebelt": "^1.0.2",
"@tmcw/togeojson": "^4.7.0",
"@turf/turf": "^6.5.0",
"@types/d3-array": "^3.0.2",
"@types/d3-color": "^3.0.2",
"@types/d3-scale": "^4.0.2",
"@types/d3-scale-chromatic": "^3.0.0",
"@types/dedent": "^0.7.0",
"@types/dotenv-flow": "^3.2.0",
"@types/fs-extra": "^9.0.13",
"@types/jest": "^27.4.1",
"@types/js-yaml": "^4.0.5",
"@types/lodash": "^4.14.182",
"@types/luxon": "^3.2.0",
"@types/mapbox__tilebelt": "^1.0.0",
"@types/node": "^17.0.25",
"@types/nprogress": "^0.2.0",
"@types/object-hash": "^2.2.1",
"@types/qs": "^6.9.7",
"@types/react": "^18.0.6",
"@types/styled-components": "^5.1.25",
"@xmldom/xmldom": "^0.8.6",
"axios": "^0.26.1",
"axios-retry": "^3.2.4",
"chalk": "^5.0.1",
"dedent": "^0.7.0",
"dotenv-flow": "^3.2.0",
"envalid": "^7.3.1",
"eslint": "^8.14.0",
"execa": "^6.1.0",
"fs-extra": "^10.1.0",
"globby": "^13.1.1",
"husky": "^7.0.4",
"immer": "^9.0.12",
"jest": "^27.5.1",
"js-yaml": "^4.1.0",
"lint-staged": "^12.4.0",
"lodash": "^4.17.21",
"luxon": "^3.2.1",
"markdownlint-cli": "^0.31.1",
"npm-run-all": "^4.1.5",
"object-hash": "^3.0.0",
"osmtogeojson": "^3.0.0-beta.5",
"prettier": "^2.8.2",
"puppeteer": "^13.6.0",
"qs": "^6.10.3",
"rm-up": "^1.1.0",
"sleep-promise": "^9.1.0",
"sort-keys": "^5.0.0",
"suppress-experimental-warnings": "^1.1.3",
"ts-jest": "^27.1.4",
"ts-node": "^10.9.1",
"typescript": "^4.6.3"
},
"packageManager": "[email protected]",
"engines": {
"node": ">=14.15.1",
"yarn": ">=1.22.0"
}
}