-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
60 lines (60 loc) · 1.76 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
{
"name": "dentists-map",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"refresh-data": "NODE_OPTIONS='--experimental-json-modules' node scripts/refreshDentists.mjs",
"index-data": "NODE_OPTIONS='--experimental-json-modules' node scripts/indexDentists.mjs",
"prebuild": "npm run index-data",
"test": "jest --watch"
},
"pre-commit": [
"lint"
],
"dependencies": {
"@headlessui/react": "^1.7.13",
"@react-hook/resize-observer": "^1.2.5",
"@rjackson/rjds": "^0.5.0-4",
"@sendgrid/mail": "^7.7.0",
"@turf/circle": "^6.5.0",
"cloudflare": "^2.9.1",
"fathom-client": "^3.4.1",
"geonames.js": "^3.0.6",
"h3-js": "^3.7.2",
"leaflet": "^1.8.0",
"next": "^12.1.5",
"next-usequerystate": "~v1.7.0",
"node-fetch": "^3.2.4",
"react": "^18.1.0",
"react-autosuggest": "^10.1.0",
"react-dom": "^18.1.0",
"react-leaflet": "^4.0.0",
"styled-components": "^5.3.5"
},
"devDependencies": {
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^14.0.0",
"@types/cloudflare": "^2.7.9",
"@types/node": "^18.15.3",
"@types/react": "^18.0.9",
"@types/react-autosuggest": "^10.1.5",
"@types/styled-components": "^5.1.25",
"@typescript-eslint/eslint-plugin": "^5.57.0",
"autoprefixer": "^10.4.5",
"eslint": "7.32.0",
"eslint-config-next": "^12.3.3",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-jsx-a11y": "^6.4.1",
"jest": "^29.5.0",
"jest-environment-jsdom": "^29.5.0",
"mini-svg-data-uri": "^1.4.4",
"node-mocks-http": "^1.12.2",
"postcss": "^8.4.12",
"pre-commit": "^1.2.2",
"tailwindcss": "^3.0.24"
}
}