-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.22 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.22 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
{
"name": "mygpa",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev --turbopack",
"build": "next build --turbopack",
"start": "next start",
"lint": "eslint .",
"type-check": "tsc -b --noEmit",
"fmt-check": "prettier --check \"**/*.{js,mjs,cjs,jsx,ts,tsx,css,json}\"",
"fmt": "prettier --write \"**/*.{js,mjs,cjs,jsx,ts,tsx,css,json}\"",
"prepare": "husky"
},
"dependencies": {
"@formkit/auto-animate": "^0.9.0",
"aos": "^2.3.4",
"motion": "^12.23.24",
"next": "15.5.5",
"react": "19.1.0",
"react-dom": "19.1.0",
"react-hook-form": "^7.65.0",
"react-toastify": "^11.0.5",
"zod": "^4.1.12"
},
"devDependencies": {
"@commitlint/cli": "^20.1.0",
"@commitlint/config-conventional": "^20.0.0",
"@eslint/eslintrc": "^3",
"@tailwindcss/postcss": "^4",
"@types/aos": "^3.0.7",
"@types/next": "^8.0.7",
"@types/node": "^20",
"@types/react": "^19",
"@types/react-dom": "^19",
"eslint": "^9",
"eslint-config-next": "15.5.5",
"eslint-config-prettier": "^10.1.8",
"husky": "^9.1.7",
"prettier": "^3.6.2",
"prettier-plugin-tailwindcss": "^0.7.0",
"tailwindcss": "^4",
"typescript": "^5"
}
}