Files
egovframe-msa-edu/frontend/portal/package.json
2024-05-27 17:44:12 +09:00

96 lines
3.2 KiB
JSON

{
"name": "msa-template-portal",
"version": "0.1.0",
"private": true,
"engines": {
"node": "14.8.0",
"npm": "6.14.7"
},
"scripts": {
"dev": "ts-node --transpile-only --project tsconfig.server.json server/index.ts",
"dev:sm": "SITE_ID=3 npm run dev",
"dev:lg": "SITE_ID=2 npm run dev",
"dev:smWin": "set SITE_ID=3&&npm run dev",
"dev:lgWin": "set SITE_ID=2&&npm run dev",
"build": "NODE_ENV=production next build",
"prebuild": "rimraf ./next",
"build:prodlg": "env-cmd -f ./.env.production-lg npm run build",
"start:prodlg": "env-cmd -f ./.env.production-lg npm run start",
"build:prodsm": "env-cmd -f ./.env.production-sm npm run build",
"start:prodsm": "env-cmd -f ./.env.production-sm npm run start",
"build:prodk8slg": "env-cmd -f ./.env.production-k8s-lg npm run build",
"start:prodk8slg": "env-cmd -f ./.env.production-k8s-lg npm run start",
"build:prodk8ssm": "env-cmd -f ./.env.production-k8s-sm npm run build",
"start:prodk8ssm": "env-cmd -f ./.env.production-k8s-sm npm run start",
"start": "NODE_ENV=production next start",
"test": "jest --coverage"
},
"dependencies": {
"@ckeditor/ckeditor5-build-classic": "^29.1.0",
"@ckeditor/ckeditor5-react": "^3.0.2",
"@material-ui/core": "^4.12.3",
"@material-ui/data-grid": "^4.0.0-alpha.37",
"@material-ui/icons": "^4.11.2",
"@material-ui/lab": "4.0.0-alpha.60",
"axios": "^0.21.1",
"cookies": "^0.8.0",
"cors": "^2.8.5",
"date-fns": "^2.23.0",
"date-fns-tz": "^1.1.6",
"eventsource": "^1.1.0",
"express": "^4.17.1",
"http-proxy": "^1.18.1",
"immer": "^9.0.5",
"multer": "^1.4.3",
"next": "11.1.0",
"next-connect": "^0.10.2",
"next-i18next": "^8.6.0",
"notistack": "^1.0.10",
"react": "^17.0.2",
"react-cookie": "^4.1.1",
"react-datepicker": "^4.2.1",
"react-dom": "^17.0.2",
"react-google-login": "^5.2.2",
"react-hook-form": "^7.13.0",
"react-i18next": "^11.12.0",
"react-kakao-login": "^2.1.0",
"recoil": "^0.4.1",
"styled-jsx": "^4.0.0",
"swiper": "^6.8.2",
"swr": "^0.5.6",
"uuid": "^8.3.2"
},
"devDependencies": {
"@testing-library/dom": "^8.2.0",
"@testing-library/jest-dom": "^5.14.1",
"@testing-library/react": "^12.0.0",
"@types/cookies": "^0.7.7",
"@types/express": "^4.17.13",
"@types/http-proxy": "^1.17.7",
"@types/multer": "^1.4.7",
"@types/node": "^16.7.2",
"@types/react": "^17.0.19",
"@types/react-cookies": "^0.1.0",
"@types/react-datepicker": "^4.1.7",
"@typescript-eslint/eslint-plugin": "^4.29.3",
"@typescript-eslint/parser": "^4.29.3",
"babel-jest": "^27.0.6",
"babel-plugin-module-resolver": "^4.1.0",
"env-cmd": "^10.1.0",
"eslint": "^7.32.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-config-next": "^11.1.0",
"eslint-config-prettier": "^8.3.0",
"eslint-import-resolver-babel-module": "^5.3.1",
"eslint-plugin-import": "^2.24.2",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-prettier": "^3.4.1",
"eslint-plugin-react": "^7.24.0",
"eslint-plugin-react-hooks": "^4.2.0",
"jest": "^27.0.6",
"prettier": "^2.3.2",
"ts-node": "^10.2.1",
"typescript": "^4.4.2"
}
}