-
Notifications
You must be signed in to change notification settings - Fork 31
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 2.63 KB
/
package.json
File metadata and controls
70 lines (70 loc) · 2.63 KB
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
{
"name": "moco-browser-extensions",
"description": "Browser plugin for MOCO",
"version": "2.14.0",
"license": "MIT",
"browserslist": [
"defaults",
"not ie 11"
],
"scripts": {
"start": "yarn start:chrome",
"start:chrome": "webpack --config webpack.chrome.config.js --watch --env browser=chrome --env NODE_ENV=development",
"start:firefox": "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": "webpack --config webpack.chrome.config.js --env browser=chrome --env NODE_ENV=production",
"build:firefox": "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": "jest --watch"
},
"dependencies": {
"@vespaiach/axios-fetch-adapter": "^0.3.0",
"axios": "^0.30.3",
"classnames": "^2.5.1",
"core-js": "^3.48.0",
"date-fns": "^4.1.0",
"dotenv": "^17.2.3",
"focus-trap": "^8.0.0",
"lodash": "^4.17.23",
"prop-types": "^15.6.2",
"react": "^19.2.4",
"react-dom": "^19.2.4",
"react-select": "^5.10.2",
"url-pattern": "^1.0.3",
"webext-bridge": "^6.0.1",
"webextension-polyfill": "^0.12.0"
},
"devDependencies": {
"@babel/core": "^7.29.0",
"@babel/eslint-parser": "^7.28.6",
"@babel/preset-env": "^7.29.0",
"@babel/preset-react": "^7.28.5",
"babel-jest": "^30.2.0",
"babel-loader": "^10.0.0",
"clean-webpack-plugin": "^4.0.0",
"copy-webpack-plugin": "^13.0.1",
"copyfiles": "^2.4.1",
"css-loader": "^7.1.3",
"eslint": "^9.39.2",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-jest": "^29.12.1",
"eslint-plugin-prettier": "^5.5.5",
"eslint-plugin-react": "^7.37.5",
"file-loader": "^6.0.0",
"html-webpack-plugin": "^5.6.6",
"jest": "^30.2.0",
"mini-css-extract-plugin": "^2.10.0",
"prettier": "^3.8.1",
"sass": "^1.97.3",
"sass-loader": "^16.0.6",
"style-loader": "^4.0.0",
"svg-inline-loader": "^0.8.2",
"uuid": "^13.0.0",
"webpack": "^5.104.1",
"webpack-cli": "^6.0.1",
"zip-webpack-plugin": "^4.0.1"
},
"packageManager": "yarn@1.22.22+sha512.a6b2f7906b721bba3d67d4aff083df04dad64c399707841b7acf00f6b133b7ac24255f2652fa22ae3534329dc6180534e98d17432037ff6fd140556e2bb3137e"
}