-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
76 lines (76 loc) · 2.54 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
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
{
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"predev": "yarn clean && prisma generate && contentlayer build --clearCache && yarn gen-blur",
"prebuild": "yarn predev",
"postbuild": "cross-env NODE_OPTIONS='--experimental-json-modules' node ./scripts/generate-rss.mjs && node ./scripts/generate-sitemap.mjs",
"analyze": "cross-env ANALYZE=true NODE_ENV=production next build",
"blur": "cross-env NODE_OPTIONS='--experimental-json-modules' node ./scripts/blur.mjs",
"gen-blur": "yarn blur about",
"clean": "rimraf .next && rimraf dist && rimraf out && rimraf .contentlayer",
"update-deps": "npx --yes npm-check-updates -u --reject node-vibrant,worker-loader && yarn",
"complexity": "npx --yes --no-install code-complexity ./src --sort score --limit 25",
"modules-size": "npx --yes --no-install cost-of-modules --no-install --yarn"
},
"dependencies": {
"@fontsource/inter": "^4.5.14",
"@fontsource/manrope": "^4.5.12",
"@mdi/react": "^1.6.1",
"@prisma/client": "^4.8.0",
"@stitches/react": "^1.2.8",
"@uiball/loaders": "^1.2.6",
"canvas-confetti": "^1.6.0",
"colord": "^2.9.3",
"contentlayer": "^0.2.9",
"next": "^13.1.1",
"next-contentlayer": "^0.2.9",
"next-themes": "0.2.1",
"node-vibrant": "3.1.6",
"react": "^18.2.0",
"react-compare-image": "^3.3.0",
"react-dom": "^18.2.0",
"swr": "^2.0.0"
},
"devDependencies": {
"@jsdevtools/rehype-toc": "^3.0.2",
"@next/bundle-analyzer": "^13.1.1",
"@types/canvas-confetti": "^1.6.0",
"@types/node": "^18.11.18",
"@types/react": "^18.0.26",
"@types/react-dom": "^18.0.10",
"@types/remove-markdown": "^0.3.1",
"@typescript-eslint/eslint-plugin": "^5.47.1",
"critters": "^0.0.16",
"cross-env": "^7.0.3",
"eslint": "^8.31.0",
"eslint-config-next": "^13.1.1",
"globby": "^13.1.3",
"plaiceholder": "^2.5.0",
"prettier": "^2.8.1",
"prisma": "^4.8.0",
"reading-time": "^1.5.0",
"rehype": "^12.0.1",
"rehype-accessible-emojis": "^0.3.2",
"rehype-autolink-headings": "^6.1.1",
"rehype-code-titles": "^1.1.0",
"rehype-prism-plus": "^1.5.0",
"rehype-slug": "^5.1.0",
"remark-gfm": "^3.0.1",
"remove-markdown": "^0.5.0",
"rimraf": "^3.0.2",
"sass": "^1.57.1",
"sharp": "^0.31.3",
"typescript": "^4.9.4",
"xml": "^1.0.1"
},
"prettier": {
"arrowParens": "always",
"singleQuote": true,
"tabWidth": 2,
"trailingComma": "all"
}
}