forked from igugyj/FunRadiusP
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.57 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.57 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
{
"name": "FunRadiusP",
"version": "0.1.1",
"private": true,
"scripts": {
"prebuild": "git submodule update --init --recursive",
"predev": "node scripts/copy-assets.js --dev && node scripts/generate-rss-dev.js",
"dev": "next dev",
"build": "next build",
"postbuild": "node scripts/copy-assets.js && node scripts/generate-rss.js && node scripts/generate-sitemap.js && node scripts/generate-verification.js",
"deploy": "npm run build && node scripts/submit-indexnow.js",
"postsubmit": "node scripts/generate-sitemap.js && node scripts/submit-indexnow.js",
"start": "node scripts/serve-static.js",
"preview": "node scripts/serve-static.js",
"lint": "next lint"
},
"dependencies": {
"dotenv": "^17.4.1",
"gray-matter": "^4.0.3",
"hastscript": "^9.0.0",
"natural-falling-js": "^0.9.1",
"react": "^19.2.6",
"react-dom": "^19.2.6",
"react-icons": "^5.6.0",
"rehype-autolink-headings": "^7.1.0",
"rehype-highlight": "^7.0.0",
"rehype-katex": "^7.0.1",
"rehype-slug": "^6.0.0",
"rehype-stringify": "^10.0.1",
"remark-gfm": "^4.0.1",
"remark-math": "^6.0.0",
"remark-parse": "^11.0.0",
"remark-rehype": "^11.1.1",
"rss": "^1.2.2",
"unified": "^11.0.5",
"unist-util-visit": "^5.1.0"
},
"devDependencies": {
"@types/node": "^20",
"@types/react": "^18",
"@types/react-dom": "^18",
"autoprefixer": "^10.4.19",
"eslint": "^10",
"eslint-config-next": "^16.2.2",
"next": "^16.2.6",
"postcss": "^8",
"tailwindcss": "^3.4.3",
"typescript": "^5"
}
}