-
-
Notifications
You must be signed in to change notification settings - Fork 32
/
package.json
78 lines (78 loc) · 2.41 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
77
78
{
"private": true,
"scripts": {
"dev": "bun velite --watch & next dev",
"build": "bun download-themes && next telemetry disable && bun velite build && next build",
"start": "next start",
"lint": "next lint",
"setup": "node ./scripts/setup.mjs && bun download-themes",
"clean": "rimraf .next && rimraf dist && rimraf out && rimraf .velite",
"update-deps": "npx npm-check-updates -u && bun i",
"download-themes": "node ./scripts/download-themes.mjs",
"prune-code": "ts-prune -i '.next|.velite|src/app'",
"postinstall": "is-ci || husky install",
"analyze": "ANALYZE=true bun run build"
},
"dependencies": {
"canvas-confetti": "^1.9.3",
"next": "^14.3.0-canary.63",
"next-themes": "0.3.0",
"react": "^18.3.1",
"react-compare-slider": "^3.1.0",
"react-dom": "^18.3.1",
"swr": "^2.2.5"
},
"devDependencies": {
"@commitlint/cli": "19.3.0",
"@commitlint/config-conventional": "19.2.2",
"@jsdevtools/rehype-toc": "^3.0.2",
"@neondatabase/serverless": "^0.9.3",
"@next/bundle-analyzer": "^14.2.3",
"@types/canvas-confetti": "^1.6.4",
"@types/node": "^20.12.12",
"@types/react": "^18.3.2",
"@types/react-dom": "^18.3.0",
"@types/xml": "^1.0.11",
"@typescript-eslint/eslint-plugin": "^7.9.0",
"@typescript-eslint/parser": "^7.9.0",
"autoprefixer": "^10.4.19",
"colord": "^2.9.3",
"cssnano": "^7.0.1",
"dotenv": "^16.4.5",
"drizzle-orm": "^0.30.10",
"eslint": "8.57.0",
"eslint-config-next": "^14.2.3",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"husky": "^9.0.11",
"is-ci": "^3.0.1",
"million": "^3.0.6",
"postcss": "^8.4.38",
"prettier": "^3.2.5",
"react-twc": "^1.4.1",
"react-tweet": "^3.2.1",
"rehype-accessible-emojis": "^0.3.2",
"rehype-autolink-headings": "^7.1.0",
"rehype-pretty-code": "^0.13.2",
"rehype-slug": "^6.0.0",
"remark-smartypants": "^3.0.1",
"remark-squeeze-paragraphs": "^6.0.0",
"remark-unwrap-images": "^4.0.0",
"sass": "^1.77.1",
"shiki": "^1.5.2",
"tailwind-merge": "^2.3.0",
"tailwindcss": "^3.4.3",
"tailwindcss-hocus": "^0.0.7",
"ts-prune": "^0.10.3",
"typescript": "^5.4.5",
"velite": "^0.1.0-rc.3",
"xml": "^1.0.1"
},
"prettier": {
"arrowParens": "always",
"singleQuote": true,
"tabWidth": 2,
"trailingComma": "all",
"semi": true
}
}