mirror of
https://github.com/makeplane/plane
synced 2024-06-14 14:31:34 +00:00
cfc7049343
* chore: Added Dockerfile for Space Project * fix: next js config to standalone mode * fix: workedaround build error with rename 404 page * chore: modified dockerfile with new conventions * chore: modified dockercompose file for new plane-deploy * fix: handled ts errors with possibly undefined states * chore: updated main dockerfile with plane-deploy * feat: included space project to start.sh * chore: modified space project port while running in production * chore: restored changes inside space project * chore: added ngnix config for space project running :4000 * fix: Updated docker-compose files * chore: added space url for ngnix config * chore: Updated ngnix template * chore: updated space url in compose hub file * dev: updated dockerfile.space and start and replace script * dev: equate hub and build docker files * dev: revert workspace space page --------- Co-authored-by: NarayanBavisetti <narayan3119@gmail.com>
38 lines
885 B
JSON
38 lines
885 B
JSON
{
|
|
"name": "space",
|
|
"version": "0.0.1",
|
|
"private": true,
|
|
"scripts": {
|
|
"dev": "next dev -p 4000",
|
|
"build": "next build",
|
|
"start": "next start -p 4000",
|
|
"lint": "next lint"
|
|
},
|
|
"dependencies": {
|
|
"@headlessui/react": "^1.7.13",
|
|
"@types/node": "18.14.1",
|
|
"@types/nprogress": "^0.2.0",
|
|
"@types/react": "18.0.28",
|
|
"@types/react-dom": "18.0.11",
|
|
"axios": "^1.3.4",
|
|
"eslint": "8.34.0",
|
|
"eslint-config-next": "13.2.1",
|
|
"js-cookie": "^3.0.1",
|
|
"mobx": "^6.10.0",
|
|
"mobx-react-lite": "^4.0.3",
|
|
"next": "^13.4.16",
|
|
"nprogress": "^0.2.0",
|
|
"react": "^18.2.0",
|
|
"react-dom": "^18.2.0",
|
|
"typescript": "4.9.5",
|
|
"uuid": "^9.0.0"
|
|
},
|
|
"devDependencies": {
|
|
"@types/js-cookie": "^3.0.3",
|
|
"@types/uuid": "^9.0.1",
|
|
"autoprefixer": "^10.4.13",
|
|
"postcss": "^8.4.21",
|
|
"tailwindcss": "^3.2.7"
|
|
}
|
|
}
|