Skip to content

Commit

Permalink
initial starter template logic
Browse files Browse the repository at this point in the history
  • Loading branch information
luan0ap committed Nov 7, 2022
1 parent 8a3d33d commit caf1af3
Show file tree
Hide file tree
Showing 35 changed files with 631 additions and 185 deletions.
5 changes: 4 additions & 1 deletion .prettierrc
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,8 @@
"arrowParens": "avoid",
"trailingComma": "es5",
"singleQuote": true,
"semi": true
"semi": false,
"tabWidth": 2,
"bracketSameLine": true,
"singleAttributePerLine": true
}
192 changes: 177 additions & 15 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

21 changes: 17 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,21 +6,31 @@
"@chakra-ui/react": "^2.3.6",
"@emotion/react": "^11.10.5",
"@emotion/styled": "^11.10.5",
"@tanstack/react-query": "^4.13.5",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^13.4.0",
"@testing-library/user-event": "^14.4.3",
"@types/jest": "^29.2.1",
"@types/node": "^18.11.9",
"@types/react": "^18.0.24",
"@types/react-dom": "^18.0.8",
"axios": "^1.1.3",
"framer-motion": "^6.5.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-icons": "^3.11.0",
"react-intersection-observer": "^9.4.0",
"react-scripts": "5.0.1",
"typescript": "^4.8.4",
"web-vitals": "^2.1.4"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject"
"start": "NODE_PATH=src react-scripts start",
"build": "NODE_PATH=src react-scripts build",
"test": "NODE_PATH=src react-scripts test",
"eject": "react-scripts eject",
"lint:fix": "$(npm bin)/prettier -w --config .prettierrc src/",
"server": "$(npm bin -g)/json-server ./server/db.json --port 4000"
},
"eslintConfig": {
"extends": "react-app"
Expand All @@ -36,5 +46,8 @@
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"prettier": "^2.7.1"
}
}
Loading

0 comments on commit caf1af3

Please sign in to comment.