-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
110 lines (110 loc) · 3.46 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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
{
"name": "me.kochie.io",
"version": "1.0.0",
"description": "",
"scripts": {
"test": "NODE_OPTIONS=--experimental-vm-modules jest",
"dev": "next",
"build": "next build",
"start": "next start",
"prettier": "prettier --write \"src/**/*.{tsx,ts,js,jsx,css}\"",
"test-coverage": "NODE_OPTIONS=--experimental-vm-modules jest --coverage",
"lint": "eslint . --fix --ext .js,.jsx,.ts,.tsx"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kochie/me.kochie.io.git"
},
"type": "module",
"keywords": [],
"author": "[email protected]",
"license": "MIT",
"bugs": {
"url": "https://github.com/kochie/me.kochie.io/issues"
},
"engines": {
"node": ">=16.0.0"
},
"homepage": "https://github.com/kochie/me.kochie.io#readme",
"devDependencies": {
"@babel/core": "^7.25.8",
"@babel/parser": "^7.25.8",
"@babel/preset-react": "^7.25.7",
"@fortawesome/fontawesome-pro": "^6.6.0",
"@fortawesome/fontawesome-svg-core": "^6.6.0",
"@fortawesome/free-brands-svg-icons": "^6.6.0",
"@fortawesome/free-solid-svg-icons": "^6.6.0",
"@fortawesome/pro-duotone-svg-icons": "^6.6.0",
"@fortawesome/react-fontawesome": "^0.2.2",
"@mdx-js/loader": "^3.0.1",
"@mdx-js/mdx": "^3.0.1",
"@mdx-js/react": "^3.0.1",
"@next/eslint-plugin-next": "^14.2.15",
"@next/mdx": "^14.2.15",
"@sentry/browser": "^8.34.0",
"@sentry/integrations": "^7.114.0",
"@sentry/node": "^8.34.0",
"@sentry/webpack-plugin": "^2.22.5",
"@tailwindcss/forms": "^0.5.9",
"@tailwindcss/typography": "^0.5.15",
"@testing-library/jest-dom": "^6.5.0",
"@testing-library/react": "^16.0.1",
"@types/jest": "^29.5.13",
"@types/mdx-js__react": "^1.5.8",
"@types/react": "^18.3.11",
"@types/react-dom": "^18.3.1",
"@types/react-test-renderer": "^18.3.0",
"@typescript-eslint/eslint-plugin": "^8.8.1",
"@typescript-eslint/parser": "^8.8.1",
"@typescript-eslint/typescript-estree": "^8.8.1",
"autoprefixer": "^10.4.20",
"babel-jest": "^29.7.0",
"babel-plugin-add-module-exports": "^1.0.4",
"eslint": "^9.12.0",
"eslint-config-next": "14.2.15",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-jest": "^28.8.3",
"eslint-plugin-next": "^0.0.0",
"eslint-plugin-react": "^7.37.1",
"eslint-plugin-react-hooks": "^5.0.0",
"estree-to-babel": "^9.1.0",
"fathom-client": "^3.7.2",
"feed": "^4.2.2",
"husky": "^9.1.6",
"jest": "^29.7.0",
"jest-css-modules": "^2.1.0",
"jest-environment-jsdom": "^29.7.0",
"next": "^14.2.15",
"next-compose-plugins": "^2.2.1",
"next-pwa": "^5.6.0",
"next-seo": "^6.6.0",
"postcss": "^8.4.47",
"postcss-css-variables": "^0.19.0",
"postcss-custom-media": "^11.0.3",
"postcss-custom-properties": "^14.0.2",
"postcss-preset-env": "^10.0.7",
"prettier": "^3.3.3",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-test-renderer": "^18.3.1",
"sharp": "^0.33.5",
"swr": "^2.2.5",
"tailwindcss": "^3.4.13",
"ts-jest": "^29.2.5",
"typescript": "^5.6.3",
"webpack": "^5.95.0"
},
"peerDependencies": {
"webpack": "^5.75.0"
},
"dependencies": {
"@radix-ui/react-slot": "^1.1.0",
"class-variance-authority": "^0.7.0",
"clsx": "^2.1.1",
"lucide-react": "^0.460.0",
"tailwind-merge": "^2.5.4",
"tailwindcss-animate": "^1.0.7"
}
}