-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
50 lines (50 loc) · 1.56 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
{
"private": true,
"dependencies": {
"@emotion/react": "^11.10.6",
"@emotion/styled": "^11.10.6",
"@fontsource/noto-color-emoji": "^5.1.0",
"@fontsource/poppins": "^5.1.0",
"@mdx-js/loader": "^3.0.1",
"@mdx-js/react": "^3.0.1",
"@mui/icons-material": "^6.2.1",
"@mui/lab": "^6.0.0-beta.20",
"@mui/material": "^6.2.1",
"@next/bundle-analyzer": "^15.1.2",
"@next/mdx": "^15.1.2",
"@notionhq/client": "^2.2.14",
"@react-spring/web": "^9.7.3",
"@types/gapi.calendar": "^3.0.11",
"@types/mdx": "^2.0.12",
"@types/node": "22.10.2",
"@types/react": "19.0.2",
"@types/react-katex": "^3.0.4",
"@types/seedrandom": "^3.0.8",
"fast-glob": "^3.3.2",
"framer-motion": "^11.2.11",
"highlight.js": "^11.9.0",
"next": "^15.1.2",
"nodemon": "^3.1.0",
"prettier": "3.4.2",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"react-katex": "^3.0.1",
"remark-frontmatter": "^5.0.0",
"remark-mdx-frontmatter": "^5.0.0",
"seedrandom": "^3.0.5",
"typescript": "5.7.2"
},
"devDependencies": {},
"scripts": {
"dev": "yarn index && yarn dev:next",
"dev:next": "next dev",
"build:next": "next build",
"build": "yarn index && yarn build:next",
"start": "next start",
"lint": "next lint",
"prettier": "prettier --write src/",
"gencerts": "node genCerts.js",
"index": "node src/content-indexer.mjs",
"index:watch": "nodemon -w src/content-indexer.mjs -w content -e mjs,mdx src/content-indexer.mjs"
}
}