-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
47 lines (47 loc) · 1.28 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
{
"name": "acm-ucr-static-website",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev --turbopack",
"build": "next build",
"start": "next start",
"format": "npx prettier --write .",
"check": "npx prettier --check .",
"eslint": "npx eslint -c eslint.config.mjs",
"prepare": "husky install"
},
"dependencies": {
"@tanstack/react-query": "~5.53.3",
"lucide-react": "~0.417.0",
"next": "^15.1.6",
"react": "19.0.0",
"react-dom": "19.0.0"
},
"devDependencies": {
"@eslint/js": "~9.8.0",
"@tailwindcss/postcss": "^4.0.0",
"@tanstack/eslint-plugin-query": "~5.53.0",
"@types/node": "~22.1.0",
"@types/react": "19.0.7",
"@types/react-dom": "19.0.3",
"@typescript-eslint/eslint-plugin": "~8.0.0",
"@typescript-eslint/parser": "~8.0.0",
"eslint": "~9.8.0",
"eslint-config-prettier": "~9.1.0",
"eslint-plugin-prettier": "~5.2.1",
"eslint-plugin-react": "~7.35.0",
"globals": "~15.9.0",
"husky": "~9.1.4",
"postcss": "~8.4.40",
"prettier": "~3.3.3",
"prettier-plugin-tailwindcss": "^0.6.11",
"tailwindcss": "^4.0.0",
"typescript": "~5.5.4",
"typescript-eslint": "~8.0.0"
},
"overrides": {
"@types/react": "19.0.7",
"@types/react-dom": "19.0.3"
}
}