-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.73 KB
/
Copy pathpackage.json
File metadata and controls
62 lines (62 loc) · 1.73 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
{
"name": "dexie-web",
"version": "0.1.0",
"private": true,
"engines": {
"node": ">=20.0.0"
},
"scripts": {
"dev": "next dev --turbopack -p 4000",
"update-blog-feed": "tsx scripts/update-blog-feed.mts",
"build": "next build --turbopack && npm run build:sw && tsx scripts/generate-offline-manifest.mts",
"build:sw": "tsx scripts/build-sw.mjs",
"start": "next start",
"lint": "eslint",
"predeploy": "npm run build && echo 'preview2.dexie.org' > out/CNAME",
"deploy": "gh-pages -d out"
},
"dependencies": {
"@emotion/cache": "^11.14.0",
"@emotion/react": "^11.14.0",
"@emotion/styled": "^11.14.1",
"@mui/icons-material": "^7.3.1",
"@mui/material": "^7.3.1",
"@mui/material-nextjs": "^7.3.0",
"@next/mdx": "^15.5.4",
"@types/xml2js": "^0.4.14",
"dexie": "^4.2.1",
"dexie-react-hooks": "^4.2.0",
"fs": "^0.0.1-security",
"gray-matter": "^4.0.3",
"html-react-parser": "^5.2.6",
"next": "^15.5.9",
"next-mdx-remote": "^5.0.0",
"prism-themes": "^1.9.0",
"prismjs": "^1.30.0",
"react": "19.1.0",
"react-dom": "19.1.0",
"react-type-animation": "^3.2.0",
"rehype-raw": "^7.0.0",
"remark": "^15.0.1",
"remark-gfm": "^4.0.1",
"remark-html": "^16.0.1",
"remark-parse": "^11.0.0",
"swiper": "^11.2.10",
"unified": "^11.0.5",
"xml2js": "^0.6.2"
},
"devDependencies": {
"@eslint/eslintrc": "^3",
"@types/node": "^20",
"@types/prismjs": "^1.26.5",
"@types/react": "^19",
"@types/react-dom": "^19",
"@types/serviceworker": "^0.0.167",
"esbuild": "^0.27.0",
"eslint": "^9",
"eslint-config-next": "15.5.0",
"gh-pages": "^6.3.0",
"tsx": "^4.20.6",
"typescript": "^5"
}
}