-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #91 from SocialGouv/feat/redesign-course
feat: CJE V2
- Loading branch information
Showing
299 changed files
with
60,959 additions
and
24,964 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
node_modules | ||
yarn.lock |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
#!/usr/bin/env sh | ||
. "$(dirname -- "$0")/_/husky.sh" | ||
|
||
cd webapp | ||
yarn lint | ||
yarn format | ||
git add -u |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
{ | ||
"hooks": { | ||
"pre-commit": "sh .husky/pre-commit" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
{ | ||
"devDependencies": { | ||
"husky": "^8.0.0" | ||
}, | ||
"scripts": { | ||
"prepare": "husky install" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
src/payload/migrations |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
{ | ||
"arrowParens": "always", | ||
"bracketSpacing": true, | ||
"endOfLine": "lf", | ||
"htmlWhitespaceSensitivity": "css", | ||
"insertPragma": false, | ||
"singleAttributePerLine": false, | ||
"bracketSameLine": false, | ||
"jsxBracketSameLine": false, | ||
"jsxSingleQuote": false, | ||
"printWidth": 80, | ||
"proseWrap": "preserve", | ||
"quoteProps": "as-needed", | ||
"requirePragma": false, | ||
"semi": true, | ||
"singleQuote": false, | ||
"tabWidth": 2, | ||
"trailingComma": "es5", | ||
"useTabs": false, | ||
"embeddedLanguageFormatting": "auto", | ||
"vueIndentScriptAndStyle": false, | ||
"experimentalTernaries": false | ||
} |
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -10,6 +10,7 @@ | |
"seed:prod": "tsx ./src/payload/seed/index.ts", | ||
"cron-job": "tsx ./src/notifications/index.ts", | ||
"payload": "PAYLOAD_CONFIG_PATH=./src/payload/payload.config.ts payload", | ||
"format": "prettier --write .", | ||
"lint": "next lint" | ||
}, | ||
"dependencies": { | ||
|
@@ -18,7 +19,8 @@ | |
"@chakra-ui/icons": "^2.1.1", | ||
"@chakra-ui/next-js": "^2.2.0", | ||
"@chakra-ui/react": "^2.8.2", | ||
"@choc-ui/chakra-autocomplete": "^5.3.0", | ||
"@choc-ui/chakra-autocomplete": "^5.6.4", | ||
"@ctrl/tinycolor": "^4.1.0", | ||
"@emotion/react": "^11.11.1", | ||
"@emotion/styled": "^11.11.0", | ||
"@gsap/react": "^2.1.0", | ||
|
@@ -42,6 +44,8 @@ | |
"framer-motion": "^11.0.0", | ||
"gsap": "^3.12.5", | ||
"ignore-styles": "^5.0.1", | ||
"js-cookie": "^3.0.5", | ||
"jsonwebtoken": "^9.0.2", | ||
"jwt-decode": "^4.0.0", | ||
"next": "13.5.6", | ||
"papaparse": "^5.4.1", | ||
|
@@ -55,6 +59,7 @@ | |
"react-icons": "^5.0.0", | ||
"react-otp-input": "^3.1.1", | ||
"react-qrcode-logo": "^2.9.0", | ||
"react-toastify": "^10.0.5", | ||
"sharp": "^0.33.2", | ||
"superjson": "^1.13.3", | ||
"tsx": "^4.7.0", | ||
|
@@ -63,13 +68,16 @@ | |
"zod": "^3.22.4" | ||
}, | ||
"devDependencies": { | ||
"@types/js-cookie": "^3", | ||
"@types/jsonwebtoken": "^9", | ||
"@types/node": "^20", | ||
"@types/papaparse": "^5", | ||
"@types/react": "^18", | ||
"@types/react-dom": "^18", | ||
"@types/web-push": "^3", | ||
"prettier": "^3.1.1", | ||
"serwist": "^9.0.2", | ||
"typescript": "^5", | ||
"typescript": "5.4.5", | ||
"webpack": "^5.89.0" | ||
}, | ||
"packageManager": "[email protected]" | ||
|
Oops, something went wrong.