-
Notifications
You must be signed in to change notification settings - Fork 27
/
Copy pathpackage.json
69 lines (69 loc) · 2.46 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
{
"name": "moco-browser-extensions",
"description": "Browser plugin for MOCO",
"version": "2.8.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.29.0",
"classnames": "^2.5.1",
"core-js": "^3.38.1",
"date-fns": "^4.1.0",
"dotenv": "^16.0.0",
"focus-trap": "^7.6.0",
"lodash": "^4.17.11",
"prop-types": "^15.6.2",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-select": "^5.8.1",
"url-pattern": "^1.0.3",
"webext-bridge": "^6.0.1",
"webextension-polyfill": "^0.12.0"
},
"devDependencies": {
"@babel/core": "^7.26.0",
"@babel/eslint-parser": "^7.25.1",
"@babel/preset-env": "^7.25.4",
"@babel/preset-react": "^7.24.7",
"babel-jest": "^29.7.0",
"babel-loader": "^9.2.1",
"clean-webpack-plugin": "^4.0.0",
"copy-webpack-plugin": "^12.0.0",
"copyfiles": "^2.4.1",
"css-loader": "^7.1.2",
"eslint": "^9.19.0",
"eslint-config-prettier": "^10.0.1",
"eslint-plugin-jest": "^28.8.3",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-react": "^7.37.0",
"file-loader": "^6.0.0",
"html-webpack-plugin": "^5.6.3",
"jest": "^29.1.2",
"mini-css-extract-plugin": "^2.9.1",
"node-sass": "^9.0.0",
"prettier": "^3.3.3",
"sass-loader": "^16.0.2",
"style-loader": "^4.0.0",
"svg-inline-loader": "^0.8.2",
"uuid": "^11.0.5",
"webpack": "^5.95.0",
"webpack-cli": "^6.0.1",
"zip-webpack-plugin": "^4.0.1"
}
}