-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
99 lines (99 loc) · 3.05 KB
/
package.json
File metadata and controls
99 lines (99 loc) · 3.05 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
{
"name": "next-js-boilerplate",
"version": "1.0.0",
"engines": {
"node": ">=22 <23"
},
"scripts": {
"dev": "next dev -p ${CONDUCTOR_PORT:-3100}",
"build": "next build",
"start": "next start ${CONDUCTOR_PORT:-3100}",
"build-stats": "cross-env ANALYZE=true yarn build",
"export": "next export",
"build-prod": "run-s clean build export",
"clean": "rimraf .next out",
"fix": "npm run format && npm run lint:fix",
"lint": "next lint",
"lint:fix": "next lint --fix --quiet",
"format": "prettier . --write",
"build-types": "tsc --noEmit --pretty",
"test": "vitest run",
"test:watch": "vitest",
"prepare": "husky install",
"new-post": "node scripts/new-post.js",
"generate:cv-pdf": "node scripts/generate-cv-pdf.js"
},
"dependencies": {
"@floating-ui/react": "^0.27.16",
"@fortawesome/fontawesome-svg-core": "^7.0.1",
"@fortawesome/free-brands-svg-icons": "^7.0.1",
"@fortawesome/react-fontawesome": "^3.0.2",
"@mdx-js/loader": "^3.1.1",
"@mdx-js/react": "^3.1.1",
"@next/mdx": "^15.5.2",
"@radix-ui/react-avatar": "^1.1.10",
"@radix-ui/react-dropdown-menu": "^2.1.16",
"@vercel/og": "^0.8.5",
"clsx": "^2.1.1",
"date-fns": "^2.28.0",
"gray-matter": "^4.0.3",
"jose": "^6.2.3",
"lucide-react": "^0.543.0",
"next": "13.4.19",
"next-mdx-remote": "^6.0.0",
"next-seo": "^5.1.0",
"octokit": "^5.0.5",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-tweet": "^3.2.2",
"rehype-highlight": "^7.0.2",
"rehype-stringify": "^9.0.3",
"remark-gfm": "^4.0.1",
"remark-parse": "^10.0.1",
"remark-rehype": "^10.1.0",
"sass": "^1.55.0",
"sonner": "^1.7.1",
"styled-components": "^5.3.6",
"styled-jsx-plugin-postcss": "^4.0.1",
"tailwind-merge": "^3.3.1",
"tailwindcss": "^3.0.18",
"twemoji": "^14.0.2",
"unified": "^10.1.1",
"usehooks-ts": "^3.1.1",
"zod": "^3.23.8"
},
"devDependencies": {
"@next/bundle-analyzer": "^12.0.10",
"@types/node": "^17.0.15",
"@types/react": "^18.0.21",
"@types/react-dom": "^18.0.6",
"@types/styled-components": "^5.1.26",
"@typescript-eslint/eslint-plugin": "^5.10.2",
"@typescript-eslint/parser": "^5.10.2",
"autoprefixer": "^10.4.2",
"babel-plugin-styled-components": "^2.0.7",
"cross-env": "^7.0.3",
"cssnano": "^5.0.16",
"eslint": "^8.8.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-airbnb-typescript": "^16.1.0",
"eslint-config-next": "13.4.19",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.28.0",
"eslint-plugin-react-hooks": "^4.3.0",
"eslint-plugin-unused-imports": "^2.0.0",
"husky": "^7.0.4",
"lint-staged": "^12.3.3",
"npm-run-all": "^4.1.5",
"postcss": "^8.4.6",
"prettier": "^2.5.1",
"puppeteer": "^23.4.1",
"rimraf": "^3.0.2",
"typescript": "^4.5.5",
"vitest": "^3.2.4"
},
"license": "ISC"
}