-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
73 lines (73 loc) · 2.27 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
{
"name": "personal-resume",
"version": "1.0.0",
"private": true,
"scripts": {
"build": "yarn compile && yarn next build",
"clean": "rm -rf build-tsc .next",
"compile": "yarn run -T tsc --build --verbose",
"dev": "yarn compile && yarn next dev",
"lint": "prettier . --write && eslint . --fix --max-warnings=0",
"start": "yarn next start",
"sitemap": "yarn next-sitemap"
},
"dependencies": {
"@headlessui/react": "^2.1.7",
"@heroicons/react": "^2.1.5",
"@react-pdf/renderer": "^3.4.4",
"@vercel/analytics": "^1.3.1",
"@vercel/speed-insights": "^1.0.12",
"autoprefixer": "^10.4.20",
"classnames": "^2.5.1",
"dayjs": "^1.11.13",
"next": "^14.2.10",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"sharp": "^0.33.5",
"ts-pattern": "^5.3.1"
},
"devDependencies": {
"@eslint/compat": "^1.1.1",
"@eslint/js": "^9.10.0",
"@next/eslint-plugin-next": "^14.2.10",
"@tailwindcss/forms": "^0.5.9",
"@tailwindcss/typography": "^0.5.15",
"@types/eslint__js": "^8.42.3",
"@types/node": "^22.5.4",
"@types/react": "^18.3.5",
"@types/tailwindcss": "^3.1.0",
"@types/webpack-env": "^1.18.5",
"@typescript-eslint/eslint-plugin": "^8.5.0",
"@typescript-eslint/parser": "^8.5.0",
"cssnano": "^7.0.6",
"eslint": "^9.10.0",
"eslint-config-next": "^14.2.10",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.30.0",
"eslint-plugin-module-resolver": "^1.5.0",
"eslint-plugin-monorepo": "^0.3.2",
"eslint-plugin-react": "^7.36.1",
"eslint-plugin-react-hooks": "^4.6.2",
"eslint-plugin-react-memo": "^0.0.3",
"eslint-plugin-simple-import-sort": "^12.1.1",
"eslint-plugin-sort-keys-fix": "^1.1.2",
"eslint-plugin-unused-imports": "^4.1.3",
"globals": "^15.9.0",
"postcss": "^8.4.45",
"postcss-preset-env": "^10.0.3",
"prettier": "^3.3.3",
"prettier-plugin-tailwindcss": "^0.6.6",
"sass": "^1.78.0",
"sort-package-json": "^2.10.1",
"stylelint": "^16.9.0",
"stylelint-config-recommended": "^14.0.1",
"stylelint-order": "^6.0.4",
"stylelint-prettier": "^5.0.2",
"tailwindcss": "^3.4.11",
"typescript": "^5.6.2",
"typescript-eslint": "^8.5.0"
},
"resolutions": {
"strip-ansi": "6.0.1"
}
}