0
Fork 0
mirror of https://github.com/logto-io/logto.git synced 2024-12-16 20:26:19 -05:00
logto/packages/demo-app/package.json

63 lines
1.7 KiB
JSON
Raw Permalink Normal View History

2022-05-29 08:11:58 -05:00
{
"name": "@logto/demo-app",
2024-09-13 05:06:50 -05:00
"version": "1.4.1",
2022-05-29 08:11:58 -05:00
"description": "Logto demo app.",
"author": "Silverhand Inc. <contact@silverhand.io>",
"license": "MPL-2.0",
2022-07-01 05:47:14 -05:00
"private": true,
2024-07-23 01:52:45 -05:00
"type": "module",
2023-04-18 08:13:31 -05:00
"files": [
"dist"
],
2022-05-29 08:11:58 -05:00
"scripts": {
"precommit": "lint-staged",
2024-07-23 01:52:45 -05:00
"start": "vite",
"dev": "vite",
2022-05-29 08:11:58 -05:00
"check": "tsc --noEmit",
2024-07-28 00:55:55 -05:00
"build": "vite build",
2022-05-29 08:11:58 -05:00
"lint": "eslint --ext .ts --ext .tsx src",
"lint:report": "pnpm lint --format json --output-file report.json",
"stylelint": "stylelint \"src/**/*.scss\""
},
"devDependencies": {
2024-04-10 08:27:24 -05:00
"@logto/core-kit": "workspace:^2.4.0",
2024-02-08 00:18:42 -05:00
"@logto/language-kit": "workspace:^1.1.0",
2024-09-13 05:06:50 -05:00
"@logto/phrases": "workspace:^1.14.0",
2024-07-01 23:32:22 -05:00
"@logto/react": "^3.0.12",
2024-09-13 05:06:50 -05:00
"@logto/schemas": "workspace:^1.20.0",
"@silverhand/eslint-config": "6.0.1",
"@silverhand/eslint-config-react": "6.0.2",
"@silverhand/ts-config": "6.0.0",
"@silverhand/ts-config-react": "6.0.0",
2024-07-20 09:20:37 -05:00
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"@types/react-helmet": "^6.1.6",
"@vitejs/plugin-react": "^4.3.1",
"eslint": "^8.56.0",
"i18next": "^22.4.15",
"i18next-browser-languagedetector": "^8.0.0",
2024-07-12 07:53:42 -05:00
"jose": "^5.6.3",
"lint-staged": "^15.0.0",
"prettier": "^3.0.0",
2024-07-20 09:20:37 -05:00
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-helmet": "^6.1.0",
"react-i18next": "^12.3.1",
"stylelint": "^15.0.0",
2024-07-20 09:04:56 -05:00
"typescript": "^5.5.3",
2024-07-23 01:52:45 -05:00
"vite": "^5.3.4",
"vite-plugin-compression": "^0.5.1",
2024-07-12 07:56:01 -05:00
"zod": "^3.23.8"
2022-05-29 08:11:58 -05:00
},
2022-11-05 11:29:28 -05:00
"engines": {
"node": "^20.9.0"
2022-11-05 11:29:28 -05:00
},
2022-05-29 08:11:58 -05:00
"eslintConfig": {
2023-02-16 10:49:03 -05:00
"extends": "@silverhand/react"
2022-05-29 08:11:58 -05:00
},
"stylelint": {
"extends": "@silverhand/eslint-config-react/.stylelintrc"
2022-05-29 08:11:58 -05:00
},
"prettier": "@silverhand/eslint-config/.prettierrc"
}