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-01-06 22:30:38 +01:00
|
|
|
"version": "3.8.4",
|
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",
|
|
|
|
"dist/"
|
|
|
|
],
|
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": {
|
2019-10-09 20:02:15 +02:00
|
|
|
"node": ">=10"
|
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": {
|
2019-10-08 12:08:23 +02:00
|
|
|
"build": "npm run build:assets && npm run build:html && npm run build:img && npm run build:ico",
|
2017-07-10 23:30:38 +02:00
|
|
|
"build:assets": "NODE_ENV=production webpack -p --display-optimization-bailout",
|
2017-03-07 18:30:45 +01:00
|
|
|
"build:html": "cp public/*.html dist/.",
|
|
|
|
"build:ico": "cp public/*.ico dist/.",
|
|
|
|
"build:img": "cp public/*.png dist/public/.",
|
2017-08-04 09:10:52 +02:00
|
|
|
"start": "NODE_ENV=development webpack-dev-server --progress --colors",
|
2020-09-24 19:30:27 +02:00
|
|
|
"start:heroku": "UNLEASH_API=https://unleash.herokuapp.com npm run start",
|
2017-02-23 22:18:23 +01:00
|
|
|
"lint": "eslint . --ext js,jsx",
|
2018-02-07 14:25:02 +01:00
|
|
|
"lint:fix": "eslint . --ext js,jsx --fix",
|
2017-02-23 22:18:23 +01:00
|
|
|
"test": "jest",
|
|
|
|
"test:ci": "npm run lint && npm run build && npm run test",
|
2016-11-10 16:34:39 +01:00
|
|
|
"prepublish": "npm run build"
|
2016-11-10 14:26:24 +01:00
|
|
|
},
|
|
|
|
"main": "./index.js",
|
2020-08-07 10:42:04 +02:00
|
|
|
"dependencies": {},
|
2016-11-10 14:26:24 +01:00
|
|
|
"devDependencies": {
|
2020-04-18 22:01:25 +02:00
|
|
|
"@babel/core": "^7.9.0",
|
|
|
|
"@babel/plugin-proposal-class-properties": "^7.8.3",
|
|
|
|
"@babel/plugin-proposal-decorators": "^7.8.3",
|
|
|
|
"@babel/plugin-transform-modules-commonjs": "^7.9.0",
|
|
|
|
"@babel/plugin-transform-runtime": "^7.9.0",
|
|
|
|
"@babel/preset-env": "^7.9.5",
|
|
|
|
"@babel/preset-react": "^7.9.4",
|
2020-01-09 22:51:05 +01:00
|
|
|
"array-move": "^2.2.1",
|
2020-04-18 22:01:25 +02:00
|
|
|
"babel-eslint": "^10.1.0",
|
|
|
|
"babel-jest": "^25.3.0",
|
|
|
|
"babel-loader": "^8.1.0",
|
2019-10-08 12:08:23 +02:00
|
|
|
"clean-webpack-plugin": "^3.0.0",
|
2019-03-13 09:21:11 +01:00
|
|
|
"css-loader": "^2.1.1",
|
2020-01-26 12:05:38 +01:00
|
|
|
"debounce": "^1.2.0",
|
2019-03-13 09:21:11 +01:00
|
|
|
"debug": "^4.1.1",
|
2019-03-13 09:23:53 +01:00
|
|
|
"enzyme": "^3.9.0",
|
|
|
|
"enzyme-adapter-react-16": "^1.11.0",
|
|
|
|
"enzyme-to-json": "^3.3.5",
|
2019-10-09 20:05:58 +02:00
|
|
|
"eslint": "^6.5.1",
|
2018-08-27 13:32:37 +02:00
|
|
|
"eslint-config-finn": "^3.0.1",
|
|
|
|
"eslint-config-finn-prettier": "^3.0.2",
|
|
|
|
"eslint-config-finn-react": "^2.0.2",
|
|
|
|
"eslint-plugin-react": "^7.11.1",
|
2020-04-18 22:05:34 +02:00
|
|
|
"fetch-mock": "^9.4.0",
|
2017-02-23 22:18:23 +01:00
|
|
|
"identity-obj-proxy": "^3.0.0",
|
2018-08-22 17:15:46 +02:00
|
|
|
"immutable": "^3.8.1",
|
2019-10-09 19:58:49 +02:00
|
|
|
"jest": "^24.9.0",
|
2020-04-18 21:48:38 +02:00
|
|
|
"lodash": "^4.17.15",
|
2020-01-08 07:27:43 +01:00
|
|
|
"mini-css-extract-plugin": "^0.9.0",
|
2020-11-23 21:15:05 +01:00
|
|
|
"node-fetch": "^2.6.1",
|
2017-07-10 23:30:38 +02:00
|
|
|
"node-sass": "^4.5.3",
|
2018-08-22 17:15:46 +02:00
|
|
|
"normalize.css": "^8.0.0",
|
2018-08-22 18:06:28 +02:00
|
|
|
"optimize-css-assets-webpack-plugin": "^5.0.0",
|
2019-10-09 20:05:58 +02:00
|
|
|
"prettier": "^1.18.2",
|
2018-08-22 17:15:46 +02:00
|
|
|
"prop-types": "^15.6.2",
|
2021-01-06 21:41:56 +01:00
|
|
|
"react": "^16.14.0",
|
2020-08-03 13:44:05 +02:00
|
|
|
"react-dnd": "^11.1.3",
|
|
|
|
"react-dnd-html5-backend": "^11.1.3",
|
2021-01-06 21:41:56 +01:00
|
|
|
"react-dom": "^16.14.0",
|
2020-01-26 12:03:10 +01:00
|
|
|
"react-mdl": "^2.1.0",
|
2018-08-22 17:15:46 +02:00
|
|
|
"react-modal": "^3.1.13",
|
2020-04-18 22:08:53 +02:00
|
|
|
"react-redux": "^7.2.0",
|
2020-04-18 21:54:49 +02:00
|
|
|
"react-router-dom": "^5.1.2",
|
2020-05-18 16:03:35 +02:00
|
|
|
"react-select": "^3.1.0",
|
2021-01-06 21:41:56 +01:00
|
|
|
"react-test-renderer": "^16.14.0",
|
2021-01-06 22:22:30 +01:00
|
|
|
"react-timeago": "^4.4.0",
|
2020-04-18 22:03:38 +02:00
|
|
|
"redux": "^4.0.5",
|
2021-01-07 13:50:48 +01:00
|
|
|
"redux-devtools": "^3.7.0",
|
2020-04-18 22:03:38 +02:00
|
|
|
"redux-mock-store": "^1.5.4",
|
2019-03-13 09:26:42 +01:00
|
|
|
"redux-thunk": "^2.3.0",
|
2018-04-13 16:26:33 +02:00
|
|
|
"sass-loader": "^7.0.1",
|
2019-10-09 20:04:13 +02:00
|
|
|
"style-loader": "^1.0.0",
|
2016-11-10 14:26:24 +01:00
|
|
|
"toolbox-loader": "0.0.3",
|
2018-08-22 18:06:28 +02:00
|
|
|
"uglifyjs-webpack-plugin": "^1.3.0",
|
2018-08-22 17:04:02 +02:00
|
|
|
"webpack": "^4.17.1",
|
2018-08-14 09:49:40 +02:00
|
|
|
"webpack-cli": "^3.1.0",
|
2020-09-25 21:18:42 +02:00
|
|
|
"webpack-dev-server": "^3.11.0",
|
|
|
|
"whatwg-fetch": "^3.4.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-10-13 20:48:08 +02:00
|
|
|
"setupFilesAfterEnv": [
|
|
|
|
"<rootDir>/src/setupTests.js"
|
|
|
|
],
|
2017-02-23 22:18:23 +01:00
|
|
|
"setupFiles": [
|
|
|
|
"<rootDir>/jest-setup.js"
|
2018-08-27 09:09:02 +02:00
|
|
|
],
|
2019-01-19 11:45:53 +01:00
|
|
|
"snapshotSerializers": [
|
|
|
|
"enzyme-to-json/serializer"
|
|
|
|
]
|
2016-12-04 15:02:45 +01:00
|
|
|
}
|
2016-11-10 14:26:24 +01:00
|
|
|
}
|