-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
83 lines (83 loc) · 2.29 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
{
"name": "richardtorres314.github.io",
"version": "0.1.0",
"private": true,
"scripts": {
"build": "next build",
"dev": "next dev --turbopack",
"lint": "next lint",
"start": "export NODE_ENV=development && npx serve@latest out",
"prepare": "husky",
"test": "jest",
"test:watch": "jest --watch",
"knip": "knip"
},
"type": "module",
"dependencies": {
"@fontsource-variable/inter": "^5.0.19",
"@next/bundle-analyzer": "^15.1.6",
"@radix-ui/react-dropdown-menu": "^2.1.6",
"@radix-ui/react-navigation-menu": "^1.2.5",
"@radix-ui/react-popover": "^1.1.6",
"@radix-ui/react-slot": "^1.1.2",
"class-variance-authority": "^0.7.0",
"classnames": "^2.5.1",
"clsx": "^2.1.0",
"lucide-react": "^0.407.0",
"next": "^15.1.6",
"react": "19.0.0",
"react-awesome-reveal": "^4.2.8",
"react-dom": "19.0.0",
"tailwind-merge": "^2.3.0",
"tailwindcss-animate": "^1.0.7"
},
"devDependencies": {
"@eslint/eslintrc": "^3.0.2",
"@eslint/js": "^9.1.1",
"@tailwindcss/postcss": "^4.0.0",
"@testing-library/jest-dom": "^6.4.6",
"@testing-library/react": "^16.0.0",
"@types/jest": "^29.5.12",
"@types/node": "^20.16.12",
"@types/react": "19.0.1",
"eslint": "^8.57.0",
"eslint-config-next": "15.1.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jsx-a11y": "^6.8.0",
"eslint-plugin-n": "^17.3.1",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-react": "^7.34.1",
"eslint-plugin-react-hooks": "^4.6.0",
"globals": "^15.0.0",
"husky": "^9.0.11",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"knip": "^5.24.1",
"lint-staged": "^15.2.2",
"postcss": "^8.4.36",
"prettier": "^3.2.5",
"prettier-eslint": "^16.3.0",
"sass": "^1.71.0",
"tailwindcss": "^4.0.0",
"ts-node": "^10.9.2",
"typescript": "^5.5.3",
"typescript-eslint": "^8.4.0"
},
"engines": {
"node": "^20"
},
"lint-staged": {
"**/*.{js, jsx, ts, tsx}": [
"eslint --fix"
],
"**/*.{json, js, ts, tsx, tsx, html}": [
"prettier --write --ignore-unknown"
],
"**/*.js": "eslint --cache --fix",
"**/*.{js,css,md}": "prettier --write"
},
"overrides": {
"@types/react": "19.0.1"
}
}