Skip to content

Commit

Permalink
controls packages and config
Browse files Browse the repository at this point in the history
  • Loading branch information
cprice11 committed Oct 22, 2024
1 parent 937c5fe commit 33a86db
Show file tree
Hide file tree
Showing 2 changed files with 71 additions and 0 deletions.
49 changes: 49 additions & 0 deletions experiences/asteroids/controls/package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,49 @@
{
"name": "@footron/controls-typescript-template",
"version": "0.1.0",
"scripts": {
"dev": "ftcontrols"
},
"dependencies": {
"@emotion/react": "^11.4.1",
"@emotion/styled": "^11.13.0",
"@material-ui/core": "^4.12.1",
"@material-ui/icons": "^4.11.2",
"@mui/base": "5.0.0-beta.59",
"@mui/icons-material": "^6.1.4",
"@mui/material": "^6.1.4",
"react": "^17.0.2",
"react-cool-dimensions": "^2.0.7",
"react-dom": "^17.0.2",
"react-router-dom": "^5.2.0"
},
"devDependencies": {
"@footron/controls-cli": "^0.1.1",
"@footron/controls-client": "^0.1.14",
"@types/react": "^17.0.14",
"@types/react-dom": "^17.0.9",
"@types/react-router-dom": "^5.1.8",
"@typescript-eslint/eslint-plugin": "^4.28.2",
"@typescript-eslint/parser": "^4.28.2",
"@vitejs/plugin-react-refresh": "^1.3.5",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-config-standard": "^16.0.3",
"eslint-import-resolver-node": "^0.3.4",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^5.1.0",
"eslint-plugin-react": "^7.24.0",
"husky": ">=6",
"lint-staged": ">=10",
"pinst": ">=2",
"prettier": "^2.3.2",
"typescript": "4.3.5",
"vite": "2.4.1"
},
"lint-staged": {
"*.{html,htm,js,jsx,ts,tsx,css,md}": "yarn prettier --max-warnings=0 --write .",
"*.{js,jsx,ts,tsx,d.ts}": "yarn eslint --fix"
},
"packageManager": "yarn@4.5.0"
}
22 changes: 22 additions & 0 deletions experiences/asteroids/controls/tsconfig.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
{
"compilerOptions": {
"target": "es5",
"lib": ["dom", "dom.iterable", "esnext"],
"allowJs": true,
"skipLibCheck": true,
"esModuleInterop": true,
"noImplicitAny": true,
"allowSyntheticDefaultImports": true,
"strict": true,
"forceConsistentCasingInFileNames": true,
"noFallthroughCasesInSwitch": true,
"module": "esnext",
"moduleResolution": "node",
"resolveJsonModule": true,
"isolatedModules": true,
"noEmit": true,
"jsx": "react-jsx",
"jsxImportSource": "@emotion/react"
},
"include": ["lib"]
}

0 comments on commit 33a86db

Please sign in to comment.