-
Notifications
You must be signed in to change notification settings - Fork 41
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.79 KB
/
Copy pathpackage.json
File metadata and controls
47 lines (47 loc) · 1.79 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
{
"name": "homepage",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"export": "next export",
"deploy": "rm -rf node_modules/.cache && next build && next export && touch out/.nojekyll && cp -rf out/* ../gh-pages && cd ../gh-pages && git pull origin gh-pages && git add . && git commit -m 'Manual deployment' && git push origin gh-pages && cd ../ilab-website",
"push": "git subtree push --prefix out origin gh-pages",
"force": "git push origin `git subtree split --prefix out main`:gh-pages --force",
"build:content": "processmd \"content/**/*.{yaml,md}\" --outputDir content/output --summaryOutput content/output/summary.json",
"watch": "processmd \"content/**/*.{yaml,md}\" --outputDir content/output --summaryOutput content/output/summary.json --watch --markdownOptions.html true"
},
"author": "Ryo Suzuki <ryosuzk@googlemail.com> (http://ryosuzuki.org/)",
"license": "ISC",
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^7.0.1",
"@fortawesome/free-brands-svg-icons": "^7.0.1",
"@fortawesome/free-regular-svg-icons": "^7.0.1",
"@fortawesome/free-solid-svg-icons": "^7.0.1",
"@fortawesome/react-fontawesome": "^3.0.2",
"directory-tree": "^3.5.2",
"jquery": "^3.7.1",
"next": "^15.5.3",
"next-routes": "^1.4.2",
"react": "^19.1.1",
"react-dom": "^19.1.1",
"react-markdown": "^10.1.0",
"semantic-ui-css": "^2.5.0",
"semantic-ui-modal": "^2.5.0"
},
"devDependencies": {
"@types/react": "19.1.13",
"html-react-parser": "^5.2.7",
"lodash": "^4.17.21",
"processmd": "^4.7.0",
"typescript": "5.9.2"
},
"volta": {
"node": "22.22.2",
"yarn": "4.15.0"
},
"packageManager": "yarn@4.15.0"
}