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

74 lines
2.2 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",
2021-07-11 08:08:38 -05:00
"version": "0.1.0",
2021-08-11 09:12:36 -05:00
"license": "MPL-2.0",
2021-07-25 09:36:22 -05:00
"private": true,
2021-07-11 08:08:38 -05:00
"scripts": {
"preinstall": "npx only-allow pnpm",
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": "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",
"lint": "eslint --ext .ts --ext .tsx src",
"lint:report": "pnpm lint -- --format json --output-file report.json",
2021-07-11 08:08:38 -05:00
"stylelint": "stylelint \"src/**/*.scss\"",
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": {
"@logto/jest-config": "^0.1.0",
"@logto/phrases": "^0.1.0",
"@logto/schemas": "^0.1.0",
"@parcel/core": "^2.5.0",
"@parcel/transformer-sass": "^2.5.0",
"@peculiar/webcrypto": "^1.3.3",
2022-03-31 00:55:54 -05:00
"@silverhand/eslint-config": "^0.10.2",
"@silverhand/eslint-config-react": "^0.10.3",
"@silverhand/essentials": "^1.1.7",
2022-03-31 00:55:54 -05:00
"@silverhand/ts-config": "^0.10.2",
"@silverhand/ts-config-react": "^0.10.3",
"@testing-library/react": "^12.0.0",
"@types/jest": "^27.4.1",
2021-07-11 08:08:38 -05:00
"@types/react": "^17.0.14",
"@types/react-dom": "^17.0.9",
"@types/react-modal": "^3.13.1",
2022-02-20 01:12:07 -05:00
"@types/react-router-dom": "^5.3.2",
"classnames": "^2.3.1",
"eslint": "^8.10.0",
"i18next": "^21.6.11",
"i18next-browser-languagedetector": "^6.1.3",
2022-02-20 01:12:07 -05:00
"jest": "^27.5.1",
"js-base64": "^3.7.2",
"ky": "^0.30.0",
"libphonenumber-js": "^1.9.49",
"lint-staged": "^12.0.0",
"parcel": "^2.5.0",
2022-02-20 01:12:07 -05:00
"postcss": "^8.4.6",
"postcss-modules": "^4.3.0",
2021-07-11 08:08:38 -05:00
"prettier": "^2.3.2",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-i18next": "^11.15.4",
"react-modal": "^3.14.4",
"react-phone-number-input": "^3.1.46",
"react-router-dom": "^6.2.2",
"react-string-replace": "^1.0.0",
"react-timer-hook": "^3.0.5",
2021-07-11 08:08:38 -05:00
"stylelint": "^13.13.1",
2022-03-11 03:30:22 -05:00
"typescript": "^4.6.2"
2022-02-20 01:12:07 -05:00
},
"alias": {
"@/*": "./src/$1"
2021-07-11 08:08:38 -05:00
},
"eslintConfig": {
2021-09-16 03:54:32 -05:00
"extends": "@silverhand/react"
2021-07-11 08:08:38 -05:00
},
"stylelint": {
2021-09-16 03:54:32 -05:00
"extends": "@silverhand/eslint-config-react/.stylelintrc"
2021-07-11 08:08:38 -05:00
},
"prettier": "@silverhand/eslint-config/.prettierrc",
"dependencies": {
"use-debounced-loader": "^0.1.1"
}
2021-07-11 08:08:38 -05:00
}