-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
82 lines (82 loc) · 2.42 KB
/
package.json
File metadata and controls
82 lines (82 loc) · 2.42 KB
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
{
"name": "@profullstack/parklookup",
"version": "1.0.0",
"description": "A Progressive Web App for discovering and exploring U.S. National Parks",
"type": "module",
"scripts": {
"dev": "next dev -p ${PORT:-8080}",
"build": "next build",
"start": "next start -p ${PORT:-8080}",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"format": "prettier --write .",
"format:check": "prettier --check .",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"test:ui": "vitest --ui",
"pre-commit": "pnpm build && pnpm test",
"prepare": "git config core.hooksPath .githooks || true",
"import:nps": "node scripts/import-nps.js",
"import:wikidata": "node scripts/import-wikidata.js",
"import:link": "node scripts/link-parks.js",
"import:link-states": "node scripts/link-parks-to-states.js",
"import:trails": "node scripts/import-trails.js",
"import:blm": "node scripts/import-blm.js",
"download:blm": "node scripts/download-blm-data.js",
"import:all": "node scripts/import-all.js"
},
"engines": {
"node": ">=20.0.0",
"pnpm": ">=9.0.0"
},
"packageManager": "pnpm@9.14.2",
"dependencies": {
"@pdf-lib/fontkit": "^1.1.1",
"@react-leaflet/core": "2.1.0",
"@supabase/supabase-js": "^2.39.0",
"dotenv": "^17.2.3",
"leaflet": "^1.9.4",
"maplibre-gl": "^4.0.0",
"next": "^16.0.10",
"next-pwa": "^5.6.0",
"openai": "^6.10.0",
"pdf-lib": "^1.17.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-leaflet": "^4.2.1",
"react-map-gl": "^7.1.0",
"server-only": "^0.0.1",
"sharp": "^0.34.5",
"stripe": "^20.0.0"
},
"devDependencies": {
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^14.1.2",
"@testing-library/user-event": "^14.6.1",
"@vitejs/plugin-react": "^4.2.1",
"@vitest/coverage-v8": "^1.1.0",
"@vitest/ui": "^1.1.0",
"autoprefixer": "^10.4.16",
"eslint": "^8.56.0",
"eslint-config-next": "^14.0.4",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"jsdom": "^23.0.1",
"postcss": "^8.4.32",
"prettier": "^3.1.1",
"supabase": "^2.65.6",
"tailwindcss": "^3.4.0",
"vitest": "^1.1.0"
},
"keywords": [
"national-parks",
"pwa",
"next.js",
"supabase",
"tailwind"
],
"author": "",
"license": "MIT"
}