-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
37 lines (37 loc) · 1011 Bytes
/
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
{
"name": "ilearn",
"version": "0.1.0",
"private": true,
"scripts": {
"fastapi-dev": "pip3 install -r requirements.txt && python -m uvicorn api.index:app --reload",
"next-dev": "next dev",
"build": "next build",
"dev": "concurrently \"npm run next-dev\" \"npm run fastapi-dev\""
},
"dependencies": {
"@types/node": "20.8.0",
"@types/nodemailer": "^6.4.14",
"@types/react": "18.2.24",
"@types/react-dom": "18.2.8",
"autoprefixer": "10.4.16",
"concurrently": "^8.2.2",
"eslint": "8.50.0",
"eslint-config-next": "13.5.3",
"framer-motion": "^10.16.4",
"js-cookie": "^3.0.5",
"next": "^13.5.6",
"nodemailer": "^6.9.8",
"pdfjs-dist": "^4.0.379",
"postcss": "8.4.31",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-hook-form": "^7.48.2",
"react-reveal": "^1.2.2",
"react-type-animation": "^3.2.0",
"tailwindcss": "3.3.3",
"typescript": "5.2.2"
},
"devDependencies": {
"daisyui": "^4.0.5"
}
}