-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.52 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.52 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
46
47
48
49
50
51
52
53
54
{
"name": "commentsense",
"version": "0.1.0",
"private": true,
"scripts": {
"next-dev": "next dev",
"dev": "concurrently \"pnpm run next-dev\" \"pnpm run flask-dev\"",
"flask-dev": "node check-env.js && set FLASK_DEBUG=1 && venv\\Scripts\\python app/api/flask/app.py",
"build": "next build",
"start": "next start",
"lint": "next lint"
},
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^6.4.2",
"@fortawesome/free-solid-svg-icons": "^6.4.2",
"@fortawesome/react-fontawesome": "^0.2.0",
"@headlessui/react": "^1.7.17",
"@heroicons/react": "^2.0.18",
"@nextui-org/react": "^2.2.9",
"@react-stately/data": "^3.11.7",
"axios": "^1.6.2",
"bcrypt": "^5.1.1",
"framer-motion": "^10.16.4",
"mongodb": "^6.2.0",
"next": "14.0.0",
"next-auth": "^4.24.4",
"papaparse": "^5.4.1",
"pnpm": "^10.12.4",
"react": "^18",
"react-dom": "^18",
"react-hot-toast": "^2.4.1",
"react-redux": "^8.1.3",
"react-responsive-carousel": "^3.2.23",
"redux": "^4.2.1",
"redux-thunk": "^2.4.2",
"validator": "^13.11.0"
},
"devDependencies": {
"@types/bcryptjs": "^2.4.5",
"@types/node": "^20",
"@types/papaparse": "^5.3.14",
"@types/react": "^18",
"@types/react-dom": "^18",
"autoprefixer": "^10",
"concurrently": "^8.2.2",
"mongoose": "^8.0.0",
"postcss": "^8",
"prettier": "^3.3.3",
"prettier-plugin-tailwindcss": "^0.6.8",
"shelljs": "^0.8.5",
"tailwindcss": "^3",
"typescript": "^5"
}
}