2021-08-03 15:34:15 +09:00
|
|
|
{
|
|
|
|
"private": true,
|
|
|
|
"scripts": {
|
|
|
|
"dev": "npm run development",
|
|
|
|
"development": "mix",
|
|
|
|
"watch": "mix watch",
|
|
|
|
"watch-poll": "mix watch -- --watch-options-poll=1000",
|
|
|
|
"hot": "mix watch --hot",
|
|
|
|
"prod": "npm run production",
|
2021-11-25 05:56:15 +09:00
|
|
|
"production": "mix --production",
|
|
|
|
"compile": "run-p compile:*",
|
|
|
|
"compile:sass": "sass src/scss:dist --update --embed-sources && npm run postcss"
|
2021-08-03 15:34:15 +09:00
|
|
|
},
|
2021-09-29 23:38:39 +09:00
|
|
|
"dependencies": {
|
2021-12-24 10:42:32 +09:00
|
|
|
"@emotion/react": "^11.7.1",
|
|
|
|
"@emotion/styled": "^11.6.0",
|
2021-12-23 13:54:14 +09:00
|
|
|
"@fontsource/nunito": "^4.5.1",
|
2021-09-29 23:38:39 +09:00
|
|
|
"@material-ui/core": "^5.0.0-beta.1",
|
|
|
|
"@material-ui/lab": "^5.0.0-alpha.40",
|
|
|
|
"@material-ui/styles": "^5.0.0-beta.1",
|
2021-12-16 04:58:59 +09:00
|
|
|
"@mui/icons-material": "^5.2.4",
|
2021-10-22 16:41:39 +09:00
|
|
|
"@mui/material": "^5.0.4",
|
2021-12-21 08:35:53 +09:00
|
|
|
"@react-pdf-viewer/core": "^3.0.0",
|
|
|
|
"@react-pdf-viewer/default-layout": "^3.0.0",
|
2021-11-24 16:42:56 +09:00
|
|
|
"clipboard-copy": "^4.0.1",
|
2021-09-29 23:38:39 +09:00
|
|
|
"date-fns": "^2.23.0",
|
|
|
|
"history": "^5.0.0",
|
|
|
|
"lodash": "^4.17.21",
|
2021-10-05 00:35:47 +09:00
|
|
|
"moment": "^2.29.1",
|
2021-12-21 08:35:53 +09:00
|
|
|
"pdfjs-dist": "^2.11.338",
|
2021-09-29 23:38:39 +09:00
|
|
|
"prop-types": "^15.7.2",
|
|
|
|
"react": "^17.0.2",
|
2021-10-05 00:35:47 +09:00
|
|
|
"react-datepicker": "^4.2.1",
|
2021-09-29 23:38:39 +09:00
|
|
|
"react-dom": "^17.0.2",
|
2021-11-06 03:08:05 +09:00
|
|
|
"react-infinite-scroll-component": "^6.1.0",
|
2021-10-12 01:09:16 +09:00
|
|
|
"react-pdf": "^5.4.0",
|
2021-12-19 12:27:03 +09:00
|
|
|
"react-read-pdf": "^2.0.9",
|
2021-10-06 03:23:58 +09:00
|
|
|
"react-router": "^5.2.1",
|
|
|
|
"react-router-dom": "^5.3.0",
|
2021-12-23 13:54:14 +09:00
|
|
|
"react-toastify": "^8.0.3"
|
2021-09-29 23:38:39 +09:00
|
|
|
},
|
2021-08-03 15:34:15 +09:00
|
|
|
"devDependencies": {
|
2021-10-03 02:08:39 +09:00
|
|
|
"@babel/core": "^7.15.5",
|
2021-09-29 23:38:39 +09:00
|
|
|
"@babel/eslint-parser": "^7.14.7",
|
|
|
|
"@babel/preset-react": "^7.0.0",
|
2021-10-03 02:08:39 +09:00
|
|
|
"axios": "^0.21.4",
|
2021-09-29 23:38:39 +09:00
|
|
|
"bootstrap": "^4.0.0",
|
|
|
|
"eslint": "^7.31.0",
|
|
|
|
"eslint-config-airbnb": "^18.2.1",
|
|
|
|
"eslint-config-prettier": "^8.3.0",
|
|
|
|
"eslint-config-react-app": "^6.0.0",
|
|
|
|
"eslint-plugin-flowtype": "^5.8.1",
|
|
|
|
"eslint-plugin-import": "^2.23.4",
|
|
|
|
"eslint-plugin-jsx-a11y": "^6.4.1",
|
|
|
|
"eslint-plugin-prettier": "^3.4.0",
|
2021-10-03 02:08:39 +09:00
|
|
|
"eslint-plugin-react": "^7.26.1",
|
2021-09-29 23:38:39 +09:00
|
|
|
"eslint-plugin-react-hooks": "^4.2.0",
|
2021-10-03 02:08:39 +09:00
|
|
|
"laravel-mix": "^6.0.31",
|
2021-08-03 15:34:15 +09:00
|
|
|
"lodash": "^4.17.19",
|
2021-09-29 23:38:39 +09:00
|
|
|
"popper.js": "^1.12",
|
2021-10-05 16:37:10 +09:00
|
|
|
"postcss": "^8.3.9",
|
2021-09-29 23:38:39 +09:00
|
|
|
"prettier": "^2.3.1",
|
|
|
|
"resolve-url-loader": "^3.1.2",
|
2021-09-29 22:23:02 +09:00
|
|
|
"sass": "^1.42.1",
|
2021-09-29 23:38:39 +09:00
|
|
|
"sass-loader": "^8.0.0"
|
2021-08-03 15:34:15 +09:00
|
|
|
}
|
|
|
|
}
|