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

121 lines
3.6 KiB
JSON
Raw Normal View History

2021-07-11 08:08:38 -05:00
{
2021-07-11 09:26:08 -05:00
"name": "@logto/ui",
2023-04-20 12:04:15 -05:00
"version": "1.1.3",
2021-08-11 09:12:36 -05:00
"license": "MPL-2.0",
2022-11-21 11:31:25 -05:00
"type": "module",
2021-07-25 09:36:22 -05:00
"private": true,
2023-04-04 04:06:04 -05:00
"files": [
"dist"
],
2021-07-11 08:08:38 -05:00
"scripts": {
2021-07-25 09:27:51 -05:00
"precommit": "lint-staged",
2022-02-20 01:12:07 -05:00
"start": "parcel src/index.html",
"dev": "cross-env PORT=5001 parcel src/index.html --no-cache --hmr-port 6001",
2022-02-20 01:12:07 -05:00
"check": "tsc --noEmit",
"build": "pnpm check && rm -rf dist && parcel build src/index.html --no-autoinstall --no-cache --detailed-report",
"lint": "eslint --ext .ts --ext .tsx src",
2022-05-05 05:26:30 -05:00
"lint:report": "pnpm lint --format json --output-file report.json",
2021-07-11 08:08:38 -05:00
"stylelint": "stylelint \"src/**/*.scss\"",
2022-10-06 04:34:21 -05:00
"test:ci": "jest --coverage --silent",
2022-02-20 01:12:07 -05:00
"test": "jest"
2021-07-11 08:08:38 -05:00
},
2022-04-22 05:02:54 -05:00
"devDependencies": {
"@jest/types": "^29.5.0",
2023-04-20 12:04:15 -05:00
"@logto/app-insights": "workspace:^1.2.0",
2023-04-18 08:13:31 -05:00
"@logto/connector-kit": "workspace:^1.1.1",
"@logto/core-kit": "workspace:^2.0.0",
"@logto/language-kit": "workspace:^1.0.0",
2023-04-18 08:13:31 -05:00
"@logto/phrases": "workspace:^1.2.0",
"@logto/phrases-ui": "workspace:^1.2.0",
2023-04-20 12:04:15 -05:00
"@logto/schemas": "workspace:^1.2.2",
"@parcel/compressor-brotli": "2.8.3",
"@parcel/compressor-gzip": "2.8.3",
"@parcel/core": "2.8.3",
"@parcel/transformer-sass": "2.8.3",
"@parcel/transformer-svg-react": "2.8.3",
"@react-spring/shared": "^9.6.1",
"@react-spring/web": "^9.6.1",
"@silverhand/eslint-config": "3.0.1",
"@silverhand/eslint-config-react": "3.0.1",
"@silverhand/essentials": "^2.5.0",
"@silverhand/ts-config": "3.0.0",
"@silverhand/ts-config-react": "3.0.0",
"@swc/core": "^1.3.52",
"@swc/jest": "^0.2.26",
"@testing-library/react": "^14.0.0",
"@types/color": "^3.0.3",
2023-03-07 01:54:57 -05:00
"@types/jest": "^29.4.0",
"@types/react": "^18.0.31",
2022-08-05 02:50:31 -05:00
"@types/react-dom": "^18.0.0",
"@types/react-helmet": "^6.1.6",
"@types/react-modal": "^3.13.1",
2022-02-20 01:12:07 -05:00
"@types/react-router-dom": "^5.3.2",
"camelcase-keys": "^8.0.0",
"classnames": "^2.3.1",
"color": "^4.2.3",
"cross-env": "^7.0.3",
2023-02-16 10:49:03 -05:00
"eslint": "^8.34.0",
"i18next": "^22.4.15",
"i18next-browser-languagedetector": "^7.0.1",
"identity-obj-proxy": "^3.0.0",
2023-03-07 01:54:57 -05:00
"jest": "^29.5.0",
"jest-environment-jsdom": "^29.0.0",
"jest-transform-stub": "^2.0.0",
"jest-transformer-svg": "^2.0.0",
"js-base64": "^3.7.5",
"ky": "^0.33.0",
"libphonenumber-js": "^1.9.49",
"lint-staged": "^13.0.0",
"parcel": "2.8.3",
2023-03-11 02:56:09 -05:00
"parcel-resolver-ignore": "^2.1.3",
2022-02-20 01:12:07 -05:00
"postcss": "^8.4.6",
"postcss-modules": "^4.3.0",
2023-02-16 10:49:03 -05:00
"prettier": "^2.8.2",
"react": "^18.0.0",
"react-device-detect": "^2.2.2",
"react-dom": "^18.0.0",
"react-helmet": "^6.1.0",
"react-hook-form": "^7.34.0",
"react-i18next": "^12.2.0",
2022-08-05 02:50:31 -05:00
"react-modal": "^3.15.1",
"react-router-dom": "^6.10.0",
"react-string-replace": "^1.0.0",
"react-timer-hook": "^3.0.5",
"react-top-loading-bar": "^2.3.1",
"stylelint": "^15.0.0",
2023-04-04 04:06:04 -05:00
"superstruct": "^1.0.3",
"tiny-cookie": "^2.4.1",
"typescript": "^5.0.0",
"use-debounced-loader": "^0.1.1",
2022-12-14 00:23:59 -05:00
"zod": "^3.20.2"
2022-02-20 01:12:07 -05:00
},
2022-11-05 11:29:28 -05:00
"engines": {
2023-01-07 07:42:10 -05:00
"node": "^18.12.0"
2022-11-05 11:29:28 -05:00
},
"//": "https://github.com/parcel-bundler/parcel/issues/7636",
"targets": {
"default": {
"engines": {
"browsers": "defaults"
}
}
},
2023-03-11 02:56:09 -05:00
"parcelIgnore": [
"^/api/.+"
],
2022-02-20 01:12:07 -05:00
"alias": {
2023-04-04 04:06:04 -05:00
"@/*": "./src/$1",
"superstruct": "./node_modules/superstruct/dist/index.mjs"
2021-07-11 08:08:38 -05:00
},
"eslintConfig": {
"extends": "@silverhand/react",
"rules": {
"jsx-a11y/no-autofocus": "off"
}
2021-07-11 08:08:38 -05:00
},
"stylelint": {
"extends": "@silverhand/eslint-config-react/.stylelintrc"
2021-07-11 08:08:38 -05:00
},
"prettier": "@silverhand/eslint-config/.prettierrc"
2021-07-11 08:08:38 -05:00
}