-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
42 lines (42 loc) · 1.16 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
{
"name": "growtomiddle",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "BASE_FETCH_URL=http://localhost:3000 next dev",
"build": "next build",
"build-compile": "next build --experimental-build-mode compile",
"start": "next start",
"lint": "next lint",
"format": "prettier --write .",
"run:sandbox": "tsc ./src/_sandbox/index.ts && node ./src/_sandbox/index.js"
},
"engines": {
"node": ">=20"
},
"dependencies": {
"@apollo/client": "^3.9.6",
"@apollo/experimental-nextjs-app-support": "^0.8.0",
"@as-integrations/next": "^3.0.0",
"@auth/mongodb-adapter": "^2.0.1",
"@sentry/nextjs": "^7.87.0",
"@vercel/analytics": "^1.1.3",
"mongodb": "^6.3.0",
"mongoose": "^8.7.0",
"next": "^14.2.15",
"next-auth": "^4.24.7",
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"devDependencies": {
"@types/node": "^20.10.0",
"@types/react": "^18.2.38",
"@types/react-dom": "^18.2.17",
"eslint": "^8.54.0",
"eslint-config-next": "^14.0.3",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"prettier": "^3.3.3",
"typescript": "^5.4.2"
}
}