-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 874 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 874 Bytes
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
{
"name": "simple-next",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev --turbopack",
"build": "next build",
"serve": "npx serve@latest out",
"start": "npx serve@latest out",
"lint": "next lint"
},
"dependencies": {
"@headlessui/react": "^2.2.0",
"@types/node": "^22.13.0",
"@types/react": "19.0.8",
"@types/react-dom": "19.0.3",
"aos": "3.0.0-beta.6",
"next": "15.1.6",
"prettier-plugin-tailwindcss": "^0.6.11",
"react": "19.0.0",
"react-dom": "19.0.0",
"react-icons": "^5.5.0",
"typescript": "^5.7.3"
},
"devDependencies": {
"@tailwindcss/forms": "^0.5.10",
"@tailwindcss/postcss": "^4.0.3",
"@types/aos": "^3.0.7",
"postcss": "^8.5.1",
"tailwindcss": "^4.0.3"
},
"overrides": {
"@types/react": "19.0.8",
"@types/react-dom": "19.0.3"
}
}