Skip to content

Commit

Permalink
feat: add translation system (#14)
Browse files Browse the repository at this point in the history
* feat: add translation system

* feat: extract program section
  • Loading branch information
marc-gavanier authored Feb 12, 2024
1 parent 911976f commit da6733a
Show file tree
Hide file tree
Showing 76 changed files with 8,030 additions and 2,444 deletions.
1 change: 0 additions & 1 deletion next.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@ const nextConfig = {
basePath: process.env?.NEXT_PUBLIC_BASE_PATH ?? '',
assetPrefix: process.env?.NEXT_PUBLIC_ASSET_PREFIX ?? '',
output: 'export',
distDir: 'build',
images: {
unoptimized: true
},
Expand Down
62 changes: 34 additions & 28 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,41 +13,47 @@
"lint.staged": "lint-staged",
"prettier": "prettier --write ./src/",
"prettier.ci": "prettier --check ./src/",
"prepare": "husky install"
"prepare": "husky install",
"data.schema.slots": "ts-json-schema-generator -p 'src/app/_schemas/slots.ts' -t 'Slots' -o 'src/schemas/data/slots.schema.json'",
"data.schema.speakers": "ts-json-schema-generator -p 'src/app/_schemas/speakers.ts' -t 'Speakers' -o 'src/schemas/data/speakers.schema.json'",
"data.schema.sponsors": "ts-json-schema-generator -p 'src/app/_schemas/sponsors.ts' -t 'Sponsors' -o 'src/schemas/data/sponsors.schema.json'",
"data.schema.talks": "ts-json-schema-generator -p 'src/app/_schemas/talks.ts' -t 'Talks' -o 'src/schemas/data/talks.schema.json'",
"translation.schema.home": "ts-json-schema-generator -p 'src/app/(home)/homeTranslation.ts' -t 'HomeTranslation' -o 'src/schemas/transation/home.schema.json'"
},
"dependencies": {
"@types/node": "20.4.2",
"@types/react": "18.2.15",
"@types/react-dom": "18.2.7",
"bootstrap": "^5.3.1",
"dotenv": "^16.3.1",
"next": "13.4.10",
"bootstrap": "^5.3.2",
"dotenv": "^16.4.2",
"next": "14.1.0",
"react": "18.2.0",
"react-bootstrap": "^2.8.0",
"react-bootstrap": "^2.10.1",
"react-dom": "18.2.0",
"typescript": "5.1.6"
"react-markdown": "^9.0.1"
},
"devDependencies": {
"@commitlint/cli": "^17.6.6",
"@commitlint/config-conventional": "^17.6.6",
"@typescript-eslint/eslint-plugin": "^6.0.0",
"@typescript-eslint/parser": "^6.0.0",
"@vitejs/plugin-react": "^4.0.3",
"@vitest/coverage-v8": "^0.33.0",
"eslint": "8.45.0",
"eslint-config-next": "13.4.10",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-vitest": "^0.2.6",
"husky": "^8.0.3",
"lint-staged": "^13.2.3",
"prettier": "3.0.0",
"sass": "^1.63.6",
"@commitlint/cli": "^18.6.0",
"@commitlint/config-conventional": "^18.6.0",
"@types/node": "20.11.17",
"@types/react": "18.2.55",
"@types/react-dom": "18.2.19",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"@vitejs/plugin-react": "^4.2.1",
"@vitest/coverage-v8": "^1.2.2",
"eslint": "8.56.0",
"eslint-config-next": "14.1.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-vitest": "^0.3.22",
"husky": "^9.0.10",
"lint-staged": "^15.2.2",
"prettier": "3.2.5",
"sass": "^1.70.0",
"standard-version": "^9.5.0",
"stylelint": "^15.10.1",
"stylelint": "^16.2.1",
"stylelint-config-prettier-scss": "^1.0.0",
"stylelint-config-standard-scss": "^10.0.0",
"stylelint-scss": "^5.0.1",
"ts-json-schema-generator": "^1.2.0",
"vitest": "^0.33.0"
"stylelint-config-standard-scss": "^13.0.0",
"stylelint-scss": "^6.1.0",
"ts-json-schema-generator": "^1.5.0",
"typescript": "5.3.3",
"vitest": "^1.2.2"
}
}
Loading

0 comments on commit da6733a

Please sign in to comment.