-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1.23 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
{
"name": "portfolio-next",
"version": "0.1.0",
"private": true,
"license": "ISC",
"scripts": {
"flask-dev": "FLASK_DEBUG=1 pip3 install -r requirements.txt && python3 -m flask --app api/index run -p 5328",
"next-dev": "next dev",
"old-dev": "concurrently \"npm run next-dev\" \"npm run flask-dev\"",
"dev": "npm run next-dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"cypress": "cypress open"
},
"dependencies": {
"@tailwindcss/line-clamp": "^0.4.0",
"@tailwindcss/typography": "^0.5.15",
"autoprefixer": "^10.4.19",
"framer-motion": "^11.2.10",
"next": "^15.0.3",
"nprogress": "^0.2.0",
"prop-types": "^15.8.1",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-hook-form": "^7.51.5",
"react-intersection-observer": "^9.13.0",
"react-icons": "^5.2.1",
"react-ripples": "^2.2.1",
"react-scroll": "^1.9.0",
"tailwindcss": "^3.4.3",
"typescript": "^5.4.5"
},
"devDependencies": {
"@types/react-scroll": "^1.8.10",
"@types/node": "^22.1.0",
"@types/react": "^18.3.12",
"concurrently": "^8.2.2",
"postcss": "^8.4.47",
"postcss-preset-env": "^9.5.14",
"tailwind-scrollbar-hide": "^1.1.7"
}
}