2019-09-06 09:37:30 +10:00
|
|
|
{
|
2021-08-06 22:44:03 +10:00
|
|
|
"name": "rowy",
|
|
|
|
|
"version": "2.0.0-alpha.0",
|
2019-09-06 09:37:30 +10:00
|
|
|
"private": true,
|
|
|
|
|
"dependencies": {
|
2021-08-23 23:21:31 +10:00
|
|
|
"@craco/craco": "^6.2.0",
|
2021-08-24 00:38:11 +10:00
|
|
|
"@emotion/react": "^11.4.1",
|
2021-08-07 15:51:35 +10:00
|
|
|
"@emotion/styled": "^11.3.0",
|
|
|
|
|
"@material-ui/core": "^5.0.0-beta.2",
|
|
|
|
|
"@material-ui/icons": "^5.0.0-beta.1",
|
|
|
|
|
"@material-ui/lab": "^5.0.0-alpha.41",
|
|
|
|
|
"@material-ui/styles": "^5.0.0-beta.2",
|
|
|
|
|
"@mdi/js": "^5.9.55",
|
2021-08-06 21:53:49 +10:00
|
|
|
"@testing-library/jest-dom": "^5.11.4",
|
2021-08-24 00:38:11 +10:00
|
|
|
"@testing-library/react": "^12.0.0",
|
|
|
|
|
"@testing-library/user-event": "^13.2.1",
|
|
|
|
|
"@types/jest": "^27.0.1",
|
2021-08-06 21:53:49 +10:00
|
|
|
"@types/node": "^12.0.0",
|
2021-08-24 00:38:11 +10:00
|
|
|
"@types/react": "^17.0.19",
|
2021-08-06 21:53:49 +10:00
|
|
|
"@types/react-dom": "^17.0.0",
|
2021-08-07 15:51:35 +10:00
|
|
|
"chroma-js": "^2.1.2",
|
2021-08-23 23:21:31 +10:00
|
|
|
"craco-swc": "^0.1.3",
|
2021-08-07 15:51:35 +10:00
|
|
|
"date-fns": "^2.23.0",
|
2021-08-24 00:38:11 +10:00
|
|
|
"dompurify": "^2.3.1",
|
|
|
|
|
"firebase": "^9.0.0-beta.8",
|
|
|
|
|
"firebaseui": "^0.600.0-rc.0",
|
|
|
|
|
"jotai": "^1.3.0",
|
2021-08-07 15:51:35 +10:00
|
|
|
"lodash": "^4.17.21",
|
2021-07-01 20:48:41 +10:00
|
|
|
"react": "^17.0.2",
|
|
|
|
|
"react-dom": "^17.0.2",
|
2021-08-07 15:51:35 +10:00
|
|
|
"react-firebaseui": "^5.0.2",
|
|
|
|
|
"react-router-dom": "^5.2.0",
|
2021-08-06 21:53:49 +10:00
|
|
|
"react-scripts": "4.0.3",
|
2021-08-24 00:38:11 +10:00
|
|
|
"reactfire": "^4.0.0-rc.2",
|
2021-08-06 21:53:49 +10:00
|
|
|
"typescript": "^4.1.2",
|
|
|
|
|
"web-vitals": "^1.0.1"
|
2019-09-06 09:37:30 +10:00
|
|
|
},
|
|
|
|
|
"scripts": {
|
2021-08-23 23:21:31 +10:00
|
|
|
"start": "cross-env PORT=7699 craco start",
|
|
|
|
|
"build": "craco build",
|
|
|
|
|
"test": "craco test",
|
|
|
|
|
"eject": "craco eject",
|
2021-08-06 22:44:03 +10:00
|
|
|
"prepare": "cd .. && husky install www/.husky"
|
|
|
|
|
},
|
|
|
|
|
"engines": {
|
|
|
|
|
"node": ">=10"
|
2020-03-26 16:21:53 +08:00
|
|
|
},
|
2019-09-06 09:37:30 +10:00
|
|
|
"eslintConfig": {
|
2021-08-06 21:53:49 +10:00
|
|
|
"extends": [
|
|
|
|
|
"react-app",
|
2021-08-06 22:44:03 +10:00
|
|
|
"react-app/jest",
|
|
|
|
|
"prettier"
|
2021-08-06 21:53:49 +10:00
|
|
|
]
|
2019-09-06 09:37:30 +10:00
|
|
|
},
|
|
|
|
|
"browserslist": {
|
|
|
|
|
"production": [
|
|
|
|
|
">0.2%",
|
|
|
|
|
"not dead",
|
|
|
|
|
"not op_mini all"
|
|
|
|
|
],
|
|
|
|
|
"development": [
|
|
|
|
|
"last 1 chrome version",
|
|
|
|
|
"last 1 firefox version",
|
|
|
|
|
"last 1 safari version"
|
|
|
|
|
]
|
2021-08-06 22:44:03 +10:00
|
|
|
},
|
|
|
|
|
"devDependencies": {
|
2021-08-07 15:51:35 +10:00
|
|
|
"@types/chroma-js": "^2.1.3",
|
|
|
|
|
"@types/dompurify": "^2.2.3",
|
|
|
|
|
"@types/lodash": "^4.14.172",
|
|
|
|
|
"@types/react-router-dom": "^5.1.8",
|
2021-08-24 00:38:11 +10:00
|
|
|
"@typescript-eslint/parser": "^4.29.2",
|
2021-08-07 15:51:47 +10:00
|
|
|
"cross-env": "^7.0.3",
|
2021-08-24 00:38:11 +10:00
|
|
|
"eslint": "^7.32.0",
|
2021-08-06 22:44:03 +10:00
|
|
|
"eslint-config-prettier": "^8.3.0",
|
2021-08-24 00:38:11 +10:00
|
|
|
"eslint-config-react-app": "^6.0.0",
|
2021-08-06 22:44:03 +10:00
|
|
|
"husky": ">=6",
|
|
|
|
|
"lint-staged": ">=10",
|
|
|
|
|
"prettier": "^2.3.2"
|
|
|
|
|
},
|
|
|
|
|
"lint-staged": {
|
|
|
|
|
"*.{js,ts,tsx}": "eslint --cache --fix",
|
|
|
|
|
"*.{js,ts,tsx,css,md}": "prettier --write"
|
2019-09-06 09:37:30 +10:00
|
|
|
}
|
|
|
|
|
}
|