-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
35 lines (35 loc) · 945 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
{
"name": "yaleclubsnext",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "npm run lint && dotenv -e .env.dev next dev",
"build": "dotenv -e .env.prod next build",
"start": "dotenv -e .env.prod next start",
"lint": "next lint"
},
"dependencies": {
"axios": "^1.7.7",
"mongoose": "^8.8.0",
"next": "15.0.1",
"react": "^18.0.0",
"react-dom": "^18.0.0",
"react-infinite-scroll-component": "^6.1.0"
},
"devDependencies": {
"@types/mongoose": "^5.11.97",
"@types/node": "^20",
"@types/react": "^18",
"@typescript-eslint/eslint-plugin": "^8.13.0",
"@typescript-eslint/parser": "^8.13.0",
"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",
"postcss": "^8",
"prettier": "^3.3.3",
"tailwindcss": "^3.4.1",
"typescript": "^5.6.3"
}
}