mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2026-02-05 06:27:37 +08:00
* chore(): bump to beta 8 * fix(): IonFabButton href fix * fix(react): support components with href attributes * fix(): Prep work to break router out * fix(): breaking react-router and react-core into own packages * chore(): moving view stuff out of react-core * chore(): dev build 8-1 * chore(): update to react beta 8 * chore(): fixes to deps * fix(): removing IonAnchor in favor of IonRouterLink * chore(): beta 9 release * refactor(react): treeshake, minify, api * wip * fix(): react dev builds * fix(): fixes to get app builds working again * fix(): removing tgz file * feat(): adding platform helper methods * fix(): don't map attributes to props * chore(): add test app * feat(): copy css folder from core * chore(): move rollup node resolve to devDependencies * fix(): expose setupConfig() * perf(): improve treeshaking * fix(): removing crypto from generateUniqueId * fix(): adding missing rollup dp * fix(): test cleanup and fixes to make tests pass * chore(): moving react to packages folder * fix(): fixing react build due to move to packages * feat(): adding missing IonInfiniteScrollContent component * chore(): add automated testing using cypress * fix(): adding option onDidDismiss to controller components * 0.0.10 react * wip * fix(): removing deprecated React calls * fix(): exporting setupConfig from core * chore(): bump to 4.8.0-rc.0 * chore(): updating test-app deps and fixing test * chore(): updates to react readme * fix(): exposing isPlatform * fix(react): support using class attribute for core components * fix(react): fixing react tests by removing the webcrypto * fix(react): supporting going back to pages with query strings * chore(): adding react changelog * chore(): react rc1 release
86 lines
2.0 KiB
JSON
86 lines
2.0 KiB
JSON
{
|
|
"name": "@ionic/react",
|
|
"version": "4.8.0-rc.1",
|
|
"description": "React specific wrapper for @ionic/core",
|
|
"keywords": [
|
|
"ionic",
|
|
"framework",
|
|
"react",
|
|
"mobile",
|
|
"app",
|
|
"hybrid",
|
|
"webapp",
|
|
"cordova",
|
|
"progressive web app",
|
|
"pwa"
|
|
],
|
|
"license": "MIT",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/ionic-team/ionic.git"
|
|
},
|
|
"scripts": {
|
|
"build": "npm run clean && npm run copy && npm run compile",
|
|
"clean": "rm -rf dist && rm -rf dist-transpiled",
|
|
"compile": "npm run tsc && rollup -c",
|
|
"release": "np --any-branch --yolo --no-release-draft",
|
|
"lint": "tslint --project .",
|
|
"lint.fix": "tslint --project . --fix",
|
|
"tsc": "tsc -p .",
|
|
"copy": "node scripts/copy.js",
|
|
"test.treeshake": "node scripts/treeshaking.js dist/index.esm.js"
|
|
},
|
|
"main": "dist/index.js",
|
|
"module": "dist/index.esm.js",
|
|
"types": "dist/types/index.d.ts",
|
|
"files": [
|
|
"dist/",
|
|
"css/"
|
|
],
|
|
"dependencies": {
|
|
"@ionic/core": "4.8.0",
|
|
"tslib": "*"
|
|
},
|
|
"peerDependencies": {
|
|
"react": "^16.8.6",
|
|
"react-dom": "^16.8.6"
|
|
},
|
|
"devDependencies": {
|
|
"@types/jest": "^23.3.9",
|
|
"@types/node": "10.12.9",
|
|
"@types/react": "^16.9.1",
|
|
"@types/react-dom": "^16.8.5",
|
|
"fs-extra": "^8.1.0",
|
|
"jest": "^24.8.0",
|
|
"jest-dom": "^3.4.0",
|
|
"np": "^5.0.1",
|
|
"react": "^16.9.0",
|
|
"react-dom": "^16.9.0",
|
|
"react-testing-library": "^7.0.0",
|
|
"rollup": "^1.18.0",
|
|
"rollup-plugin-node-resolve": "^5.2.0",
|
|
"rollup-plugin-sourcemaps": "^0.4.2",
|
|
"rollup-plugin-virtual": "^1.0.1",
|
|
"ts-jest": "^24.0.2",
|
|
"tslint": "^5.18.0",
|
|
"tslint-ionic-rules": "0.0.21",
|
|
"tslint-react": "^4.0.0",
|
|
"typescript": "3.5.3"
|
|
},
|
|
"jest": {
|
|
"preset": "ts-jest",
|
|
"setupFilesAfterEnv": [
|
|
"<rootDir>/jest.setup.js"
|
|
],
|
|
"testPathIgnorePatterns": [
|
|
"node_modules",
|
|
"dist-transpiled",
|
|
"dist",
|
|
"test-app"
|
|
],
|
|
"modulePaths": [
|
|
"<rootDir>"
|
|
]
|
|
}
|
|
}
|