forked from hundertzehn/mocoapp-browser-extension
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
82 lines (82 loc) · 2.96 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
{
"name": "moco-browser-extensions",
"description": "Browser plugin for MOCO",
"version": "2.0.1",
"license": "MIT",
"browserslist": [
"defaults",
"not ie 11",
"not ie_mob 11",
"not chrome 49"
],
"jest": {
"setupFiles": [
"<rootDir>/test/jest.setup.js"
]
},
"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",
"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 --config webpack.chrome.config.js --env browser=chrome --env NODE_ENV=production",
"build:firefox": "node_modules/.bin/webpack --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",
"test": "node_modules/.bin/jest",
"test:watch": "node_modules/.bin/jest --watch"
},
"dependencies": {
"@vespaiach/axios-fetch-adapter": "^0.3.0",
"axios": "^0.27.2",
"classnames": "^2.2.6",
"core-js": "^3.10.2",
"date-fns": "^2.15.0",
"dotenv": "^16.0.0",
"lodash": "^4.17.11",
"mobx": "^5.15.4",
"mobx-react": "^6.2.2",
"prop-types": "^15.6.2",
"query-string": "^7.0.0",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-select": "^5.1.0",
"url-pattern": "^1.0.3",
"webext-bridge": "../webext-bridge",
"webextension-polyfill": "^0.10.0"
},
"devDependencies": {
"@babel/core": "^7.10.2",
"@babel/plugin-proposal-class-properties": "^7.8.3",
"@babel/plugin-proposal-decorators": "^7.10.1",
"@babel/plugin-proposal-nullish-coalescing-operator": "^7.8.3",
"@babel/plugin-proposal-optional-chaining": "^7.9.0",
"@babel/preset-env": "^7.14.1",
"@babel/preset-react": "^7.10.1",
"babel-eslint": "^10.1.0",
"babel-loader": "^8.2.2",
"babel-plugin-module-resolver": "^4.0.0",
"clean-webpack-plugin": "^4.0.0",
"copy-webpack-plugin": "11.0.0",
"copyfiles": "^2.4.1",
"css-loader": "^6.2.0",
"eslint": "^8.8.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-jest": "^27.0.4",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.20.0",
"file-loader": "^6.0.0",
"html-webpack-plugin": "^5.1.0",
"jest": "^29.1.2",
"mini-css-extract-plugin": "^2.2.0",
"node-sass": "^7.0.1",
"prettier": "^2.2.1",
"sass-loader": "13.0.2",
"style-loader": "^3.2.1",
"svg-inline-loader": "^0.8.2",
"uuid": "^9.0.0",
"webpack": "^5.68.0",
"webpack-cli": "^4.4.0",
"zip-webpack-plugin": "^4.0.1"
}
}