-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
87 lines (87 loc) · 2.63 KB
/
package.json
File metadata and controls
87 lines (87 loc) · 2.63 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
83
84
85
86
87
{
"name": "my-page",
"version": "1.0.0",
"private": true,
"scripts": {
"dev": "next dev -p 8080 -H 0.0.0.0",
"build": "next build",
"clean:admin": "rm -rf out/admin",
"start": "next start",
"lint": "next lint",
"export": "next build",
"serve": "serve out -p 3000",
"clean": "rm -rf .next out",
"test": "jest",
"updateSnap": "jest --updateSnapshot",
"cms": "decap-server",
"dev:cms": "concurrently -k \"npm run cms\" \"npm run dev\"",
"build:cms": "node scripts/build-cms.mjs",
"build:all": "npm run build && npm run build:cms",
"watch:cms": "node scripts/build-cms.mjs --watch",
"predeploy": "echo 'Use GitHub Actions workflow for deployment instead.' && exit 1 && npm run build",
"deploy": "gh-pages --no-history --dist out --nojekyll --cname xianzzz.com",
"update:last-modified": "node scripts/update-last-modified.mjs --all --mode git --path-prefix content/blog --template-key BlogPost",
"install:git-hooks": "node scripts/install-git-hooks.mjs"
},
"dependencies": {
"@emotion/cache": "^11.14.0",
"@emotion/react": "^11.14.0",
"@emotion/styled": "^11.14.1",
"@mui/icons-material": "^7.3.7",
"@mui/material": "^7.3.7",
"@mui/material-nextjs": "^7.3.7",
"@mui/styles": "^6.5.0",
"axios": "^1.13.5",
"bezier-easing": "^2.1.0",
"classnames": "^2.5.1",
"decap-cms-app": "^3.10.0",
"github-markdown-css": "^5.8.1",
"gray-matter": "^4.0.3",
"gsap": "^3.13.0",
"he": "^1.2.0",
"html-to-text": "^9.0.5",
"intersection-observer": "^0.12.2",
"next": "^16.1.5",
"pixi.js": "^8.11.0",
"prismjs": "^1.30.0",
"query-string": "^9.2.2",
"react": "^19.1.0",
"react-dom": "^19.1.0",
"react-paginate": "^8.3.0",
"rehype-prism-plus": "^2.0.1",
"rehype-stringify": "^10.0.1",
"remark": "^15.0.1",
"remark-gfm": "^4.0.1",
"remark-html": "^16.0.1",
"remark-rehype": "^11.1.2",
"typeface-roboto": "^1.1.13",
"uuid": "^11.1.0"
},
"devDependencies": {
"@testing-library/jest-dom": "^6.6.4",
"@testing-library/react": "^16.3.0",
"@types/node": "^24.1.0",
"@types/react": "^19.1.8",
"@types/react-dom": "^19.1.6",
"concurrently": "^9.2.0",
"decap-server": "^3.5.0",
"esbuild": "^0.25.8",
"eslint": "^9.32.0",
"eslint-config-next": "^15.4.4",
"gh-pages": "^6.3.0",
"jest": "^30.0.5",
"jest-environment-jsdom": "^30.0.5",
"raw-loader": "^4.0.2",
"serve": "^14.2.6",
"typescript": "^5.8.3"
},
"overrides": {
"trim": "^1.0.1"
},
"keywords": [
"nextjs",
"portfolio",
"personal-website"
],
"license": "MIT"
}