-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 2.15 KB
/
package.json
File metadata and controls
73 lines (73 loc) · 2.15 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
{
"name": "yaleclubsnext",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "npm run lint && dotenv -e .env.dev next dev",
"devprod": "npm run lint && dotenv -e .env.prod next dev",
"build": "dotenv -e .env.prod next build",
"start": "dotenv -e .env.prod next start",
"lint": "eslint src",
"test": "jest --watchAll=false"
},
"dependencies": {
"@aws-sdk/client-s3": "^3.782.0",
"@aws-sdk/s3-request-presigner": "^3.744.0",
"@heroui/react": "^2.8.10",
"@next/third-parties": "^16.0.0",
"@types/js-cookie": "^3.0.6",
"axios": "^1.7.7",
"cookies-next": "^5.0.2",
"fa-icons": "^0.2.0",
"framer-motion": "^12.38.0",
"jose": "^5.9.6",
"js-cookie": "^3.0.5",
"jsonwebtoken": "^9.0.2",
"jwt-decode": "^4.0.0",
"lucide-react": "^0.469.0",
"mongoose": "^8.8.0",
"multer": "^1.4.5-lts.1",
"multer-s3": "^3.0.1",
"next": "^16.1.6",
"next-auth": "^4.24.10",
"passport": "^0.7.0",
"react": "^18.0.0",
"react-beautiful-dnd": "^13.1.1",
"react-dom": "^18.0.0",
"react-easy-crop": "^5.2.0",
"react-icons": "^5.4.0",
"react-infinite-scroll-component": "^6.1.0",
"react-responsive": "^10.0.0",
"react-select": "^5.8.3",
"react-window": "^1.8.10",
"xml2js": "^0.6.2"
},
"devDependencies": {
"@eslint/eslintrc": "^3.3.3",
"@eslint/js": "^9.39.2",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@types/jest": "^29.5.14",
"@types/jsonwebtoken": "^9.0.7",
"@types/jwt-decode": "^2.2.1",
"@types/mongoose": "^5.11.97",
"@types/node": "^20",
"@types/passport": "^1.0.17",
"@types/react": "^18",
"@types/xml2js": "^0.4.14",
"@typescript-eslint/eslint-plugin": "^8.57.1",
"@typescript-eslint/parser": "^8.57.1",
"dotenv-cli": "^7.4.2",
"eslint": "^8.57.1",
"eslint-config-next": "15.0.1",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"jest": "^30.2.0",
"jest-environment-jsdom": "^30.2.0",
"postcss": "^8",
"prettier": "^3.3.3",
"tailwindcss": "^3.4.1",
"ts-jest": "^29.2.5",
"typescript": "^5.6.3"
}
}