mirror of
https://github.com/Unleash/unleash.git
synced 2024-12-22 19:07:54 +01:00
05334337c2
* chore: update changelog * feat: user profile * feat: onOutsideClick hook * feat: tune user profile * fix: refactor to button * feat: mobile view * fix: update tests * feat: add link to docs
113 lines
2.9 KiB
JSON
113 lines
2.9 KiB
JSON
{
|
|
"name": "unleash-frontend",
|
|
"description": "unleash your features",
|
|
"version": "4.0.0-alpha.8",
|
|
"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": ">=12"
|
|
},
|
|
"license": "Apache-2.0",
|
|
"scripts": {
|
|
"build": "react-scripts build",
|
|
"start": "react-scripts start",
|
|
"start:heroku": "UNLEASH_API=https://unleash.herokuapp.com yarn run start",
|
|
"test": "react-scripts test",
|
|
"prepublish": "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.4",
|
|
"@testing-library/react": "^11.1.0",
|
|
"@testing-library/user-event": "^12.1.10",
|
|
"@types/debounce": "^1.2.0",
|
|
"@types/enzyme": "^3.10.8",
|
|
"@types/enzyme-adapter-react-16": "^1.0.6",
|
|
"@types/jest": "^26.0.15",
|
|
"@types/node": "^12.0.0",
|
|
"@types/react": "^17.0.0",
|
|
"@types/react-dom": "^17.0.0",
|
|
"@types/react-router-dom": "^5.1.7",
|
|
"array-move": "^3.0.1",
|
|
"classnames": "^2.3.1",
|
|
"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",
|
|
"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.2.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.0.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"
|
|
}
|
|
},
|
|
"proxy": "http://localhost:4242"
|
|
}
|