1
0
mirror of https://github.com/Unleash/unleash.git synced 2024-10-18 20:09:08 +02:00
unleash.unleash/frontend/package.json
renovate[bot] d3a2c90109 chore(deps): update dependency @types/debounce to v1.2.1 (#344)
Co-authored-by: Renovate Bot <bot@renovateapp.com>
2021-09-29 21:11:52 +02:00

117 lines
3.1 KiB
JSON

{
"name": "unleash-frontend",
"description": "unleash your features",
"version": "4.2.0",
"keywords": [
"unleash",
"feature toggle",
"feature",
"toggle"
],
"files": [
"index.js",
"build/"
],
"repository": {
"type": "git",
"url": "ssh://git@github.com:Unleash/unleash-frontend.git"
},
"bugs": {
"url": "https://github.com/Unleash/unleash-frontend"
},
"engines": {
"node": ">=14"
},
"license": "Apache-2.0",
"scripts": {
"build": "INLINE_RUNTIME_CHUNK=false react-scripts build",
"lint": "eslint src",
"start": "react-scripts start",
"start:heroku": "UNLEASH_API=https://unleash.herokuapp.com yarn run start",
"start:ea": "UNLEASH_API=https://unleash4.herokuapp.com yarn run start",
"test": "react-scripts test",
"prepare": "yarn run build"
},
"devDependencies": {
"@material-ui/core": "4.11.3",
"@material-ui/icons": "4.11.2",
"@material-ui/lab": "4.0.0-alpha.57",
"@testing-library/jest-dom": "5.11.10",
"@testing-library/react": "11.2.7",
"@testing-library/user-event": "12.8.3",
"@types/debounce": "1.2.1",
"@types/enzyme": "3.10.8",
"@types/enzyme-adapter-react-16": "1.0.6",
"@types/jest": "26.0.22",
"@types/node": "12.20.7",
"@types/react": "17.0.3",
"@types/react-dom": "17.0.3",
"@types/react-router-dom": "5.1.7",
"@welldone-software/why-did-you-render": "6.1.1",
"array-move": "3.0.1",
"classnames": "2.3.1",
"craco": "0.0.3",
"css-loader": "5.2.0",
"date-fns": "2.19.0",
"debounce": "1.2.1",
"enzyme": "3.11.0",
"enzyme-adapter-react-16": "1.15.6",
"enzyme-to-json": "3.6.1",
"fetch-mock": "9.11.0",
"http-proxy-middleware": "2.0.1",
"immutable": "4.0.0-rc.12",
"lodash.clonedeep": "4.5.0",
"lodash.flow": "3.5.0",
"node-fetch": "2.6.1",
"react": "17.0.2",
"react-dnd": "14.0.2",
"react-dnd-html5-backend": "14.0.0",
"react-dom": "17.0.2",
"react-outside-click-handler": "1.3.0",
"react-redux": "7.2.3",
"react-router-dom": "5.2.0",
"react-scripts": "4.0.3",
"react-timeago": "5.3.0",
"redux": "4.0.5",
"redux-devtools-extension": "2.13.9",
"redux-mock-store": "1.5.4",
"redux-thunk": "2.3.0",
"sass": "1.32.8",
"swr": "0.5.5",
"typescript": "4.2.3",
"web-vitals": "1.1.1"
},
"jest": {
"moduleNameMapper": {
"\\.(jpg|jpeg|png|gif|eot|otf|webp|svg|ttf|woff|woff2|mp4|webm|wav|mp3|m4a|aac|oga)$": "<rootDir>/src/__mocks__/fileMock.js",
"\\.(css|scss)$": "identity-obj-proxy"
},
"snapshotSerializers": [
"enzyme-to-json/serializer"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
],
"rules": {
"no-restricted-globals": "off",
"no-useless-computed-key": "off",
"import/no-anonymous-default-export": "off"
}
}
}