mirror of
https://github.com/roleypoly/roleypoly.git
synced 2025-04-25 11:59:11 +00:00
* chore: restructure project into yarn workspaces, remove next * fix tests, remove webapp from terraform * remove more ui deployment bits * remove pages, fix FUNDING.yml * remove isomorphism * remove next providers * fix linting issues * feat: start basis of new web ui system on CRA * chore: move types to @roleypoly/types package * chore: move src/common/utils to @roleypoly/misc-utils * chore: remove roleypoly/ path remappers * chore: renmove vercel config * chore: re-add worker-types to api package * chore: fix type linting scope for api * fix(web): craco should include all of packages dir * fix(ci): change api webpack path for wrangler * chore: remove GAR actions from CI * chore: update codeql job * chore: test better github dar matcher in lint-staged
55 lines
1.5 KiB
JSON
55 lines
1.5 KiB
JSON
{
|
|
"name": "@roleypoly/web",
|
|
"version": "0.1.0",
|
|
"private": true,
|
|
"scripts": {
|
|
"build": "cross-env BUILD_PATH=../../dist craco build",
|
|
"start": "cross-env PORT=6601 craco start",
|
|
"test": "craco test"
|
|
},
|
|
"dependencies": {
|
|
"@reach/router": "^1.3.4",
|
|
"@roleypoly/design-system": "*",
|
|
"@roleypoly/misc-utils": "*",
|
|
"@roleypoly/types": "*",
|
|
"@testing-library/jest-dom": "^5.11.9",
|
|
"@testing-library/react": "^11.2.5",
|
|
"@testing-library/user-event": "^12.8.3",
|
|
"@types/jest": "^26.0.20",
|
|
"@types/node": "^14.14.33",
|
|
"@types/react": "^17.0.3",
|
|
"@types/react-dom": "^17.0.2",
|
|
"react": "^17.0.1",
|
|
"react-dom": "^17.0.1",
|
|
"react-helmet": "^6.1.0",
|
|
"react-scripts": "4.0.3",
|
|
"typescript": "^4.2.3",
|
|
"web-vitals": "^1.1.0"
|
|
},
|
|
"devDependencies": {
|
|
"@craco/craco": "^6.1.1",
|
|
"@types/react-helmet": "^6.1.0",
|
|
"babel-loader": "8.1.0",
|
|
"cross-env": "7.0.3",
|
|
"ts-loader": "^8.0.18",
|
|
"webpack": "4.44.2"
|
|
},
|
|
"browserslist": {
|
|
"production": [
|
|
">0.2%",
|
|
"not dead",
|
|
"not op_mini all"
|
|
],
|
|
"development": [
|
|
"last 1 chrome version",
|
|
"last 1 firefox version",
|
|
"last 1 safari version"
|
|
]
|
|
},
|
|
"eslintConfig": {
|
|
"extends": [
|
|
"react-app",
|
|
"react-app/jest"
|
|
]
|
|
}
|
|
}
|