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-12-14 09:39:30 +01:00
|
|
|
"version": "4.4.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",
|
2021-04-07 09:04:48 +02:00
|
|
|
"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",
|
2021-08-23 12:16:38 +02:00
|
|
|
"lint": "eslint src",
|
2021-04-07 09:04:48 +02:00
|
|
|
"start": "react-scripts start",
|
|
|
|
"start:heroku": "UNLEASH_API=https://unleash.herokuapp.com yarn run start",
|
2021-08-26 19:54:22 +02:00
|
|
|
"start:ea": "UNLEASH_API=https://unleash4.herokuapp.com yarn run start",
|
2021-11-04 10:02:17 +01:00
|
|
|
"start:demo": "UNLEASH_API=http://unleash.herokuapp.com yarn run start",
|
2021-04-07 09:04:48 +02:00
|
|
|
"test": "react-scripts test",
|
2021-09-30 11:44:30 +02:00
|
|
|
"prepare": "yarn run build",
|
2021-10-08 11:23:29 +02:00
|
|
|
"e2e": "yarn run cypress open --config baseUrl='http://localhost:3000' --env PASSWORD_AUTH=true,AUTH_TOKEN=$AUTH_TOKEN",
|
2021-11-26 16:07:05 +01:00
|
|
|
"e2e:heroku": "yarn run cypress open --config baseUrl='http://localhost:3000' --env PASSWORD_AUTH=false,AUTH_TOKEN=$AUTH_TOKEN",
|
2021-09-30 11:44:30 +02:00
|
|
|
"e2e:enterprise": "yarn run cypress open --config baseUrl='http://localhost:3000' --env PASSWORD_AUTH=true,ENTERPRISE=true,AUTH_TOKEN=$AUTH_TOKEN"
|
2016-11-10 14:26:24 +01:00
|
|
|
},
|
2021-04-09 13:38:30 +02:00
|
|
|
"devDependencies": {
|
2021-10-07 10:53:47 +02:00
|
|
|
"@material-ui/core": "4.12.3",
|
2021-09-27 09:12:17 +02:00
|
|
|
"@material-ui/icons": "4.11.2",
|
2021-10-07 10:53:47 +02:00
|
|
|
"@material-ui/lab": "4.0.0-alpha.60",
|
2021-12-03 22:12:27 +01:00
|
|
|
"@testing-library/jest-dom": "5.16.0",
|
2021-10-03 17:58:07 +02:00
|
|
|
"@testing-library/react": "12.1.2",
|
2021-10-19 00:33:27 +02:00
|
|
|
"@testing-library/user-event": "13.5.0",
|
2021-09-29 21:11:52 +02:00
|
|
|
"@types/debounce": "1.2.1",
|
2021-11-08 16:02:06 +01:00
|
|
|
"@types/deep-diff": "1.0.1",
|
2021-10-20 23:12:25 +02:00
|
|
|
"@types/enzyme": "3.10.10",
|
2021-09-27 09:12:17 +02:00
|
|
|
"@types/enzyme-adapter-react-16": "1.0.6",
|
2021-11-18 21:08:18 +01:00
|
|
|
"@types/jest": "27.0.3",
|
2021-12-21 01:08:36 +01:00
|
|
|
"@types/node": "14.18.2",
|
2022-01-04 13:57:07 +01:00
|
|
|
"@types/react": "17.0.38",
|
2021-11-03 11:51:27 +01:00
|
|
|
"@types/react-dom": "17.0.11",
|
2021-10-26 07:34:54 +02:00
|
|
|
"@types/react-router-dom": "5.3.2",
|
2021-10-08 19:04:55 +02:00
|
|
|
"@types/react-timeago": "4.1.3",
|
2021-11-14 18:57:37 +01:00
|
|
|
"@welldone-software/why-did-you-render": "6.2.3",
|
2021-09-27 09:12:17 +02:00
|
|
|
"array-move": "3.0.1",
|
|
|
|
"classnames": "2.3.1",
|
2021-10-21 10:55:45 +02:00
|
|
|
"copy-to-clipboard": "3.3.1",
|
2021-09-27 09:12:17 +02:00
|
|
|
"craco": "0.0.3",
|
2021-11-03 21:24:35 +01:00
|
|
|
"css-loader": "6.5.1",
|
2021-10-26 01:34:52 +02:00
|
|
|
"cypress": "8.7.0",
|
2021-11-30 12:49:22 +01:00
|
|
|
"date-fns": "2.27.0",
|
2021-09-27 09:12:17 +02:00
|
|
|
"debounce": "1.2.1",
|
2021-11-08 16:02:06 +01:00
|
|
|
"deep-diff": "1.0.2",
|
2021-09-27 09:12:17 +02:00
|
|
|
"enzyme": "3.11.0",
|
|
|
|
"enzyme-adapter-react-16": "1.15.6",
|
2021-09-30 10:24:39 +02:00
|
|
|
"enzyme-to-json": "3.6.2",
|
2021-10-13 10:20:34 +02:00
|
|
|
"fast-json-patch": "3.1.0",
|
2021-09-27 09:12:17 +02:00
|
|
|
"fetch-mock": "9.11.0",
|
|
|
|
"http-proxy-middleware": "2.0.1",
|
2021-10-08 03:03:18 +02:00
|
|
|
"immutable": "4.0.0",
|
2021-09-27 09:12:17 +02:00
|
|
|
"lodash.clonedeep": "4.5.0",
|
|
|
|
"lodash.flow": "3.5.0",
|
2021-10-31 17:17:19 +01:00
|
|
|
"node-fetch": "2.6.6",
|
2021-12-04 17:13:05 +01:00
|
|
|
"prettier": "2.5.1",
|
2021-09-27 09:12:17 +02:00
|
|
|
"react": "17.0.2",
|
2022-01-04 15:44:40 +01:00
|
|
|
"react-dnd": "14.0.5",
|
|
|
|
"react-dnd-html5-backend": "14.1.0",
|
2021-09-27 09:12:17 +02:00
|
|
|
"react-dom": "17.0.2",
|
|
|
|
"react-outside-click-handler": "1.3.0",
|
2021-10-25 23:12:04 +02:00
|
|
|
"react-redux": "7.2.6",
|
2021-09-30 15:49:49 +02:00
|
|
|
"react-router-dom": "5.3.0",
|
2021-04-07 09:04:48 +02:00
|
|
|
"react-scripts": "4.0.3",
|
2021-09-30 19:58:50 +02:00
|
|
|
"react-timeago": "6.2.1",
|
2021-10-28 12:21:09 +02:00
|
|
|
"redux": "4.1.2",
|
2021-09-27 09:12:17 +02:00
|
|
|
"redux-devtools-extension": "2.13.9",
|
|
|
|
"redux-mock-store": "1.5.4",
|
2021-11-27 00:19:32 +01:00
|
|
|
"redux-thunk": "2.4.1",
|
2022-01-04 12:00:36 +01:00
|
|
|
"sass": "1.45.2",
|
2021-09-30 19:59:16 +02:00
|
|
|
"swr": "1.0.1",
|
2021-12-13 22:57:16 +01:00
|
|
|
"typescript": "4.5.4",
|
2021-10-13 10:20:34 +02:00
|
|
|
"web-vitals": "2.1.2"
|
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"
|
2021-04-07 09:04:48 +02:00
|
|
|
]
|
|
|
|
},
|
|
|
|
"browserslist": {
|
|
|
|
"production": [
|
|
|
|
">0.2%",
|
|
|
|
"not dead",
|
|
|
|
"not op_mini all"
|
2021-02-05 14:24:22 +01:00
|
|
|
],
|
2021-04-07 09:04:48 +02:00
|
|
|
"development": [
|
|
|
|
"last 1 chrome version",
|
|
|
|
"last 1 firefox version",
|
|
|
|
"last 1 safari version"
|
2021-02-05 14:33:32 +01:00
|
|
|
]
|
2021-03-30 15:14:02 +02:00
|
|
|
},
|
2021-04-07 09:04:48 +02:00
|
|
|
"eslintConfig": {
|
|
|
|
"extends": [
|
|
|
|
"react-app",
|
|
|
|
"react-app/jest"
|
|
|
|
],
|
|
|
|
"rules": {
|
|
|
|
"no-restricted-globals": "off",
|
|
|
|
"no-useless-computed-key": "off",
|
|
|
|
"import/no-anonymous-default-export": "off"
|
|
|
|
}
|
2021-07-20 22:56:57 +02:00
|
|
|
}
|
2016-11-10 14:26:24 +01:00
|
|
|
}
|