1
0
mirror of https://github.com/Unleash/unleash.git synced 2024-10-18 20:09:08 +02:00
unleash.unleash/frontend/package.json

117 lines
3.1 KiB
JSON
Raw Normal View History

2016-11-10 14:26:24 +01:00
{
2016-11-10 15:39:37 +01:00
"name": "unleash-frontend",
2016-11-10 14:26:24 +01:00
"description": "unleash your features",
2021-09-27 13:40:32 +02:00
"version": "4.2.0",
2016-11-10 14:26:24 +01:00
"keywords": [
"unleash",
"feature toggle",
"feature",
"toggle"
],
2016-12-23 10:58:33 +01:00
"files": [
"index.js",
"build/"
2016-12-23 10:58:33 +01:00
],
2016-11-10 14:26:24 +01:00
"repository": {
"type": "git",
2020-05-12 23:35:42 +02:00
"url": "ssh://git@github.com:Unleash/unleash-frontend.git"
2016-11-10 14:26:24 +01:00
},
"bugs": {
2020-05-12 23:35:42 +02:00
"url": "https://github.com/Unleash/unleash-frontend"
2016-11-10 14:26:24 +01:00
},
"engines": {
2021-05-05 22:18:35 +02:00
"node": ">=14"
2016-11-10 14:26:24 +01:00
},
2017-03-07 14:31:30 +01:00
"license": "Apache-2.0",
2016-11-10 14:26:24 +01:00
"scripts": {
2021-05-25 18:50:29 +02:00
"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",
2021-08-25 14:24:10 +02:00
"prepare": "yarn run build"
2016-11-10 14:26:24 +01:00
},
2021-04-09 13:38:30 +02:00
"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"
2017-02-23 22:18:23 +01:00
},
"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"
},
2019-01-19 11:45:53 +01:00
"snapshotSerializers": [
"enzyme-to-json/serializer"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
2021-02-05 14:24:22 +01:00
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
2021-02-05 14:33:32 +01:00
]
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
],
"rules": {
"no-restricted-globals": "off",
"no-useless-computed-key": "off",
"import/no-anonymous-default-export": "off"
}
}
2016-11-10 14:26:24 +01:00
}