-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
27 lines (27 loc) · 787 Bytes
/
package.json
File metadata and controls
27 lines (27 loc) · 787 Bytes
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
{
"name": "serverless_apis",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "NEXT_APP_ENV=dev NEXT_PUBLIC_GH_REPO_ALLOW_ORIGIN='http://localhost:3000' next dev -p 8000",
"build": "NEXT_PUBLIC_GH_REPO_ALLOW_ORIGIN='https://nextjsdevfolio.vercel.app' next build",
"start": "next start",
"lint": "next lint",
"dev:windows": "Set NEXT_APP_ENV=dev NEXT_PUBLIC_GH_REPO_ALLOW_ORIGIN='http://localhost:3000' && next dev -p 8000"
},
"dependencies": {
"cors": "^2.8.5",
"eslint": "8.31.0",
"eslint-config-next": "13.1.1",
"next": "14.2.15",
"react": "18.2.0",
"react-dom": "18.2.0",
"typescript": "4.9.4"
},
"devDependencies": {
"@types/cors": "^2.8.13",
"@types/node": "^18.11.18",
"@types/react": "^18.0.26",
"@types/react-dom": "^18.0.10"
}
}