-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
77 lines (77 loc) · 2.49 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
{
"name": "chloromaps.com",
"version": "1.0.0",
"main": "dist/index.js",
"module": "esm/index.js",
"types": "dist/index.d.ts",
"unpkg": "dist/index.min.js",
"license": "MIT",
"description": "Develop and Ship Choropleth Maps Faster",
"homepage": "https://chloromaps.com",
"bugs": {
"url": "https://github.com/Deep-Codes/chloromaps"
},
"repository": {
"type": "git",
"url": "https://github.com/Deep-Codes/chloromaps"
},
"scripts": {
"dev": "next",
"build": "next build",
"start": "next start",
"lint": "eslint \"{components,lib}/**/*.{js,ts,tsx}\"",
"format": "prettier --write 'components/**/*.{js,jsxts,tsx,scss,css,json}'",
"generate": "node ./genMapFiles.js $*"
},
"files": [
"/dist",
"/esm"
],
"devDependencies": {
"@types/node": "^14.14.36",
"@types/react": "^16.9.22",
"@types/react-dom": "^16.9.5",
"@types/styled-jsx": "^2.2.8",
"@types/uuid": "^8.3.0",
"@typescript-eslint/eslint-plugin": "^4.15.2",
"@typescript-eslint/parser": "^4.15.2",
"eslint": "^7.16.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-config-airbnb-typescript": "^12.3.1",
"eslint-config-prettier": "^8.1.0",
"eslint-config-react-app": "^6.0.0",
"eslint-config-ts-lambdas": "^1.2.3",
"eslint-import-resolver-typescript": "^2.4.0",
"eslint-loader": "^4.0.2",
"eslint-plugin-flowtype": "^5.3.1",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-prettier": "^3.3.1",
"eslint-plugin-react": "^7.22.0",
"eslint-plugin-react-hooks": "^4.2.0",
"next": "^12.1.5",
"prettier": "^2.2.1",
"prettier-eslint": "^12.0.0",
"prettier-eslint-cli": "^5.0.0",
"react-dom": "^17.0.1",
"typescript": "^4.1.3"
},
"dependencies": {
"@geist-ui/react": "^2.1.5",
"@geist-ui/react-icons": "^1.0.1",
"@mdx-js/loader": "^1.6.22",
"@next/mdx": "^10.2.3",
"inter-ui": "^3.18.1",
"jotai": "^0.16.0",
"jspdf": "^2.3.1",
"next-seo": "^4.23.0",
"preact": "^10.5.13",
"react": "^17.0.1",
"react-colorful": "^5.1.4",
"react-svgmt": "^1.1.11",
"react-tooltip": "^4.2.17",
"save-svg-as-png": "^1.4.17",
"styled-jsx": "3.3.0",
"svg2pdf.js": "^2.1.0"
}
}