38 lines
780 B
JSON
38 lines
780 B
JSON
{
|
|
"name": "client",
|
|
"version": "0.1.0",
|
|
"private": true,
|
|
"scripts": {
|
|
"dev": "next dev",
|
|
"build": "next build",
|
|
"start": "next start",
|
|
"lint": "next lint",
|
|
"package": "next build && pkg --target latest server.js"
|
|
},
|
|
"pkg": {
|
|
"assets": [
|
|
".next/**/*",
|
|
"static/**/*"
|
|
],
|
|
"scripts": [
|
|
".next/**/*.js"
|
|
]
|
|
},
|
|
"dependencies": {
|
|
"next": "13.4.7",
|
|
"react": "18.2.0",
|
|
"react-dom": "18.2.0"
|
|
},
|
|
"devDependencies": {
|
|
"@types/node": "20.3.1",
|
|
"@types/react": "18.2.13",
|
|
"@types/react-dom": "18.2.6",
|
|
"pkg": "^5.8.1",
|
|
"tailwindcss": "3.3.2",
|
|
"typescript": "5.1.3",
|
|
"postcss": "8.4.24",
|
|
"autoprefixer": "10.4.14",
|
|
"eslint": "8.43.0",
|
|
"eslint-config-next": "13.4.7"
|
|
}
|
|
}
|