2019-03-22 15:56:24 +01:00
|
|
|
{
|
|
|
|
"name": "moco-browser-extensions",
|
|
|
|
"description": "Browser plugin for MOCO",
|
2020-09-10 14:52:08 +02:00
|
|
|
"version": "1.5.2",
|
2019-03-26 16:57:23 +01:00
|
|
|
"license": "MIT",
|
2019-03-22 15:56:24 +01:00
|
|
|
"scripts": {
|
|
|
|
"start": "yarn start:chrome",
|
|
|
|
"start:chrome": "node_modules/.bin/webpack --config webpack.chrome.config.js --watch --env.browser chrome --env.NODE_ENV development",
|
|
|
|
"start:firefox": "node_modules/.bin/webpack --config webpack.firefox.config.js --watch --env.browser firefox --env.NODE_ENV development",
|
2019-03-26 16:09:58 +01:00
|
|
|
"zip:chrome": "zip -qr build/chrome/moco-bx-source.zip . -x .git/\\* build/\\* node_modules/\\* test/\\* .DS_Store",
|
|
|
|
"zip:firefox": "zip -qr build/firefox/moco-bx-source.zip . -x .git/\\* build/\\* node_modules/\\* test/\\* .DS_Store",
|
|
|
|
"build:chrome": "node_modules/.bin/webpack -p --config webpack.chrome.config.js --env.browser chrome --env.NODE_ENV production",
|
|
|
|
"build:firefox": "node_modules/.bin/webpack -p --config webpack.firefox.config.js --env.browser firefox --env.NODE_ENV production",
|
|
|
|
"build": "yarn build:firefox && yarn zip:firefox && yarn build:chrome && yarn zip:chrome",
|
2019-03-22 15:56:24 +01:00
|
|
|
"test": "node_modules/.bin/jest",
|
2019-03-26 10:01:58 +01:00
|
|
|
"test:watch": "node_modules/.bin/jest --watch"
|
2019-03-22 15:56:24 +01:00
|
|
|
},
|
|
|
|
"dependencies": {
|
2020-06-04 23:21:09 +02:00
|
|
|
"@babel/polyfill": "^7.10.1",
|
2020-04-03 08:29:22 +02:00
|
|
|
"axios": "^0.19.2",
|
2019-03-22 15:56:24 +01:00
|
|
|
"classnames": "^2.2.6",
|
2020-08-04 11:42:07 +02:00
|
|
|
"date-fns": "^2.15.0",
|
2019-12-11 08:46:39 +01:00
|
|
|
"dotenv": "^8.2.0",
|
2019-03-22 15:56:24 +01:00
|
|
|
"lodash": "^4.17.11",
|
2020-04-03 08:35:40 +02:00
|
|
|
"mobx": "^5.15.4",
|
2020-06-04 23:21:43 +02:00
|
|
|
"mobx-react": "^6.2.2",
|
2019-03-22 15:56:24 +01:00
|
|
|
"prop-types": "^15.6.2",
|
2020-06-04 23:19:49 +02:00
|
|
|
"query-string": "^6.12.1",
|
2020-04-03 08:28:47 +02:00
|
|
|
"react": "^16.13.1",
|
2020-04-03 08:35:56 +02:00
|
|
|
"react-dom": "^16.13.1",
|
2020-04-03 08:42:00 +02:00
|
|
|
"react-select": "^3.1.0",
|
2019-03-22 15:56:24 +01:00
|
|
|
"react-spring": "^8.0.7",
|
|
|
|
"url-pattern": "^1.0.3"
|
|
|
|
},
|
|
|
|
"devDependencies": {
|
2020-06-04 22:44:31 +02:00
|
|
|
"@babel/core": "^7.10.2",
|
2020-04-03 08:41:37 +02:00
|
|
|
"@babel/plugin-proposal-class-properties": "^7.8.3",
|
2020-06-04 23:24:03 +02:00
|
|
|
"@babel/plugin-proposal-decorators": "^7.10.1",
|
2020-04-03 08:50:03 +02:00
|
|
|
"@babel/plugin-proposal-nullish-coalescing-operator": "^7.8.3",
|
2020-04-03 08:42:18 +02:00
|
|
|
"@babel/plugin-proposal-optional-chaining": "^7.9.0",
|
2020-08-04 11:41:38 +02:00
|
|
|
"@babel/preset-env": "^7.11.0",
|
2020-06-04 23:19:34 +02:00
|
|
|
"@babel/preset-react": "^7.10.1",
|
2020-04-03 08:43:22 +02:00
|
|
|
"babel-eslint": "^10.1.0",
|
2020-04-03 08:27:44 +02:00
|
|
|
"babel-loader": "^8.1.0",
|
2019-12-23 15:43:15 +01:00
|
|
|
"babel-plugin-module-resolver": "^4.0.0",
|
2019-09-18 05:53:17 +02:00
|
|
|
"clean-webpack-plugin": "^3.0.0",
|
2020-06-04 23:29:06 +02:00
|
|
|
"copy-webpack-plugin": "^6.0.2",
|
2020-06-04 23:18:55 +02:00
|
|
|
"copyfiles": "^2.3.0",
|
2020-08-04 11:52:32 +02:00
|
|
|
"css-loader": "^4.2.0",
|
2020-08-06 11:50:14 +02:00
|
|
|
"eslint": "7.6.0",
|
2020-06-04 23:22:42 +02:00
|
|
|
"eslint-config-prettier": "^6.11.0",
|
2020-06-04 23:37:49 +02:00
|
|
|
"eslint-plugin-jest": "^23.13.2",
|
2020-06-04 23:38:58 +02:00
|
|
|
"eslint-plugin-prettier": "^3.1.3",
|
2020-06-04 23:20:46 +02:00
|
|
|
"eslint-plugin-react": "^7.20.0",
|
2020-04-03 08:40:50 +02:00
|
|
|
"file-loader": "^6.0.0",
|
2020-06-04 23:20:16 +02:00
|
|
|
"html-webpack-plugin": "^4.3.0",
|
2020-06-04 23:14:03 +02:00
|
|
|
"jest": "^26.0.1",
|
2020-01-08 09:06:07 +01:00
|
|
|
"mini-css-extract-plugin": "^0.9.0",
|
2020-06-04 22:44:14 +02:00
|
|
|
"node-sass": "^4.14.1",
|
2020-06-04 23:22:22 +02:00
|
|
|
"prettier": "^2.0.5",
|
2020-08-04 11:51:57 +02:00
|
|
|
"sass-loader": "^9.0.2",
|
2020-06-04 23:23:13 +02:00
|
|
|
"style-loader": "^1.2.1",
|
2020-04-03 08:43:54 +02:00
|
|
|
"svg-inline-loader": "^0.8.2",
|
2020-08-04 11:44:11 +02:00
|
|
|
"uuid": "^8.3.0",
|
2020-06-04 23:21:30 +02:00
|
|
|
"webpack": "^4.43.0",
|
2020-04-03 08:44:30 +02:00
|
|
|
"webpack-cli": "^3.3.11",
|
2019-03-22 15:56:24 +01:00
|
|
|
"zip-webpack-plugin": "^3.0.0"
|
|
|
|
}
|
|
|
|
}
|