-
-
Notifications
You must be signed in to change notification settings - Fork 246
/
package.json
94 lines (94 loc) · 2.66 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
{
"name": "my-app",
"version": "0.1.0",
"private": true,
"engines": {
"node": ">=20.17"
},
"packageManager": "[email protected]",
"scripts": {
"preinstall": "npx only-allow pnpm",
"format": "npx prettier --write --ignore-unknown --list-different \"**/*\"",
"lint": "next lint",
"build-member-files": "node scripts/loadMemberFiles.js",
"local-dev": "cross-env NODE_ENV=development pnpm netlify dev",
"build": "next build",
"start": "next start",
"prebuild": "pnpm build-member-files",
"watch": "npm-watch",
"dev": "pnpm build-member-files && concurrently \"pnpm watch\" \"pnpm local-dev\""
},
"watch": {
"build-member-files": "src/content/members/**/*.ts"
},
"dependencies": {
"@heroicons/react": "^2.1.5",
"@imgix/js-core": "^3.8.0",
"@mdx-js/loader": "^3.0.1",
"@mdx-js/react": "^3.0.1",
"@next/mdx": "15.0.0-rc.0",
"@sindresorhus/slugify": "^2.2.1",
"@types/mdx": "^2.0.13",
"airtable": "^0.12.2",
"bootstrap": "^4.6.2",
"calendar-link": "^2.7.0",
"front-matter": "^4.0.2",
"graphql": "^16.9.0",
"graphql-request": "^6.1.0",
"hast-util-to-string": "^2.0.0",
"hastscript": "^8.0.0",
"leaflet": "^1.9.4",
"leaflet.markercluster": "^1.5.3",
"luxon": "^3.5.0",
"markdown-it": "^13.0.2",
"mdast-util-toc": "^7.1.0",
"next": "15.0.0-rc.0",
"npm-watch": "^0.13.0",
"react": "19.0.0-rc-04bd67a4-20240924",
"react-dom": "19.0.0-rc-04bd67a4-20240924",
"react-leaflet": "^4.2.1",
"react-leaflet-cluster": "^2.1.0",
"rehype-autolink-headings": "^6.1.1",
"rehype-highlight": "^6.0.0",
"rehype-sanitize": "^5.0.1",
"rehype-slug": "^5.1.0",
"rehype-stringify": "^9.0.4",
"remark-attr": "^0.11.1",
"remark-frontmatter": "^5.0.0",
"remark-parse": "^10.0.2",
"remark-rehype": "^10.1.0",
"require-dir": "^1.2.0",
"sanitize-html": "^2.13.0",
"unified": "^10.1.2"
},
"devDependencies": {
"@faker-js/faker": "^8.4.1",
"@netlify/functions": "^2.8.1",
"@netlify/plugin-nextjs": "^5.7.2",
"@types/leaflet": "^1.9.12",
"@types/leaflet.markercluster": "^1.5.4",
"@types/luxon": "^3.4.2",
"@types/node": "^20.16.7",
"@types/react": "npm:types-react@rc",
"@types/react-dom": "npm:types-react-dom@rc",
"@types/require-dir": "^1.0.4",
"@types/sanitize-html": "^2.13.0",
"all-contributors-cli": "^6.26.1",
"concurrently": "^9.0.1",
"cross-env": "^7.0.3",
"eslint": "^8.57.1",
"eslint-config-next": "15.0.0-rc.0",
"netlify-cli": "^17.36.2",
"postcss": "^8.4.47",
"prettier": "^3.3.3",
"tailwindcss": "^3.4.13",
"tsx": "^3.14.0",
"typescript": "^5.6.2"
},
"overrides": {
"@types/react": "npm:types-react@rc",
"@types/react-dom": "npm:types-react-dom@rc",
"react": "rc",
"react-dom": "rc"
}
}