react-stick
Advanced tools
Comparing version 5.0.0 to 5.0.1
{ | ||
"name": "react-stick", | ||
"version": "5.0.0", | ||
"version": "5.0.1", | ||
"description": "React component to stick a portaled node to an anchor node", | ||
@@ -16,15 +16,17 @@ "main": "lib/index.js", | ||
"scripts": { | ||
"commit": "commit", | ||
"prebuild": "npm run clean", | ||
"build": "tsc -p ./src/tsconfig.json --outdir ./es && tsc -p ./src/tsconfig.json --module commonJS --outdir ./lib ", | ||
"prepublishOnly": "npm run build", | ||
"build-demo": "NODE_ENV=PRODUCTION webpack --config ./demo/webpack.config.js", | ||
"clean": "rimraf coverage es lib build", | ||
"_format": "prettier --write --no-semi --single-quote --trailing-comma es5 \"{src,stories}/**/*.js\"", | ||
"build-demo": "vite --config demo/vite.config.ts build", | ||
"clean": "rimraf tests/coverage tests/.nyc_output es lib build", | ||
"lint": "eslint --max-warnings=0 --ext .ts --ext .tsx src tests demo/src", | ||
"lint:fix": "npm run lint -- --fix", | ||
"prenow-build": "npm run build", | ||
"now-build": "npm run build-demo", | ||
"start": "NODE_ENV=development webpack server --mode=development --config demo/webpack.config.js", | ||
"start": "vite --config demo/vite.config.ts", | ||
"semantic-release": "semantic-release", | ||
"semantic-release-preview": "semantic-release-github-pr", | ||
"test": "NODE_ENV=test karma start ./tests/karma.conf.js", | ||
"test": "cypress run --component --config-file ./tests/cypress.config.ts", | ||
"test:open": "cypress open --component --config-file ./tests/cypress.config.ts --browser electron", | ||
"prepare": "husky install" | ||
@@ -39,45 +41,31 @@ }, | ||
"devDependencies": { | ||
"@babel/core": "7.17.12", | ||
"@babel/preset-env": "7.17.12", | ||
"@babel/preset-react": "7.17.12", | ||
"@babel/preset-typescript": "^7.17.12", | ||
"@testing-library/react": "^12.1.5", | ||
"@types/expect": "^1.20.4", | ||
"@types/mocha": "^9.1.1", | ||
"babel-eslint": "10.1.0", | ||
"babel-loader": "^8.2.5", | ||
"babel-plugin-istanbul": "6.1.1", | ||
"@commitlint/cli": "17.0.3", | ||
"@commitlint/config-conventional": "17.0.3", | ||
"@commitlint/prompt-cli": "17.0.3", | ||
"@cypress/code-coverage": "^3.10.0", | ||
"@cypress/react": "^6.0.0", | ||
"@cypress/vite-dev-server": "^3.0.0", | ||
"@testing-library/cypress": "^8.0.3", | ||
"@types/react": "16.14.28", | ||
"@types/react-dom": "^16.9.16", | ||
"@vitejs/plugin-react": "2.0.0", | ||
"condition-circle": "2.0.2", | ||
"core-js": "3.22.5", | ||
"eslint": "8.15.0", | ||
"core-js": "3.24.0", | ||
"cypress": "10.3.1", | ||
"eslint": "8.20.0", | ||
"eslint-config-prettier": "^8.5.0", | ||
"eslint-config-react-app": "7.0.1", | ||
"eslint-plugin-import": "2.26.0", | ||
"eslint-plugin-jsx-a11y": "6.5.1", | ||
"eslint-plugin-prettier": "^4.0.0", | ||
"eslint-plugin-react": "7.29.4", | ||
"eslint-plugin-react-hooks": "4.5.0", | ||
"expect": "1.20.2", | ||
"eslint-plugin-prettier": "4.2.1", | ||
"glamor": "2.20.40", | ||
"html-webpack-harddisk-plugin": "2.0.0", | ||
"html-webpack-plugin": "5.5.0", | ||
"husky": "^8.0.1", | ||
"karma": "6.3.20", | ||
"karma-chrome-launcher": "3.1.1", | ||
"karma-coverage": "2.2.0", | ||
"karma-mocha": "2.0.1", | ||
"karma-mocha-reporter": "2.2.5", | ||
"karma-sourcemap-loader": "0.3.8", | ||
"karma-webpack": "5.0.0", | ||
"lint-staged": "^12.4.1", | ||
"mocha": "10.0.0", | ||
"prettier": "2.6.2", | ||
"lint-staged": "13.0.3", | ||
"prettier": "2.7.1", | ||
"react": "^16.14.0", | ||
"react-dom": "^16.14.0", | ||
"rimraf": "3.0.2", | ||
"semantic-release": "19.0.2", | ||
"semantic-release": "19.0.3", | ||
"substyle-glamor": "4.1.2", | ||
"ts-loader": "^9.3.0", | ||
"typescript": "^4.6.4", | ||
"webpack": "5.72.1", | ||
"webpack-cli": "4.9.2", | ||
"webpack-dev-server": "4.9.0" | ||
"typescript": "4.7.4", | ||
"vite": "3.0.3", | ||
"vite-plugin-istanbul": "2.9.0" | ||
}, | ||
@@ -110,3 +98,15 @@ "peerDependencies": { | ||
"*.{json,md,yaml,yml}": "prettier --write" | ||
}, | ||
"commitlint": { | ||
"extends": [ | ||
"@commitlint/config-conventional" | ||
] | ||
}, | ||
"overrides": { | ||
"ramda": "0.28.0", | ||
"npm-cli": "8.15.0", | ||
"find-versions": { | ||
"semver-regex": "3.1.4" | ||
} | ||
} | ||
} |
29
145918