-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 1.72 KB
/
package.json
File metadata and controls
69 lines (69 loc) · 1.72 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
{
"license": "MIT",
"prettier": {
"arrowParens": "always",
"bracketSpacing": true,
"jsxBracketSameLine": true,
"printWidth": 100,
"semi": true,
"singleQuote": true,
"tabWidth": 4,
"trailingComma": "all",
"useTabs": true
},
"scripts": {
"analyze": "cross-env ANALYZE=true next build",
"dev": "next",
"build": "next build",
"postbuild": "next-sitemap",
"start": "next start -H localhost",
"lint": "next lint",
"type-check": "tsc",
"format": "prettier --write \"**/*.{css,js,json,jsx,ts,tsx,vue}\""
},
"dependencies": {
"@headlessui/react": "^2.2.7",
"@iconify/react": "^4.1.1",
"@vercel/analytics": "^1.5.0",
"canvas-confetti": "^1.9.3",
"clsx": "^2.1.1",
"copy-to-clipboard": "^3.3.3",
"date-fns": "^3.6.0",
"emoji-regex": "^10.4.0",
"framer-motion": "^11.11.17",
"gray-matter": "^4.0.3",
"is-web-crawler": "^1.1.0",
"next": "^15.5.2",
"next-mdx-remote": "^5.0.0",
"next-seo": "^6.6.0",
"next-themes": "^0.3.0",
"nprogress": "^0.2.0",
"react": "^19.1.1",
"react-dom": "^19.1.1",
"react-hot-toast": "^2.4.1",
"react-use": "^17.5.1",
"react-use-lanyard": "^0.3.1",
"rehype-autolink-headings": "^7.1.0",
"remark-emoji": "^4.0.1",
"remark-prism": "^1.3.6",
"remark-slug": "^7.0.1",
"swr": "^2.2.5",
"use-sound": "^4.0.3",
"windicss": "^3.5.6"
},
"devDependencies": {
"@eslint/eslintrc": "^3.3.1",
"@types/canvas-confetti": "^1.6.4",
"@types/node": "^20.17.6",
"@types/nprogress": "^0.2.3",
"@types/react": "^19.1.9",
"@types/react-dom": "^19.1.7",
"eslint": "^9.32.0",
"eslint-config-next": "^15.4.5",
"next-sitemap": "^4.2.3",
"prettier": "^3.3.3",
"ts-shader-loader": "^2.0.2",
"typescript": "^5.6.3",
"windicss-webpack-plugin": "^1.7.8"
}
}