-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
71 lines (71 loc) · 2.45 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
{
"name": "deviantart-filter",
"title": "DeviantArt Filter",
"version": "6.2.2",
"description": "Allows configurable filtering/removal of deviations by user and/or keyword on DeviantArt",
"author": "Ryan Thaut <[email protected]> (http://ryanthaut.com)",
"homepage": "https://github.com/rthaut/deviantART-Filter",
"license": "GPL-3.0",
"private": true,
"scripts": {
"postinstall": "patch-package",
"lint": "eslint ./app/",
"dev": "webextension-toolbox dev",
"build": "webextension-toolbox build",
"build:icons": "node scripts/generate-icons",
"start:chrome": "web-ext run --source-dir=./dist/chrome/ --target chromium",
"start:firefox": "web-ext run --source-dir=./dist/firefox/ --target firefox-desktop",
"start:firefox:nr": "npm run start:firefox -- --no-reload",
"test": "npm run lint && npm run test:firefox",
"test:firefox": "npm run build firefox && web-ext lint --source-dir=./dist/firefox/",
"docs": "npm-run-all docs:build --parallel docs:serve docs:watch",
"docs:build": "cd docs && bundle exec jekyll build",
"docs:watch": "cd docs && bundle exec jekyll build --watch",
"docs:serve": "browser-sync docs/_site -w --extensions html --no-notify"
},
"repository": {
"type": "git",
"url": "git://https://github.com/rthaut/deviantART-Filter.git"
},
"bugs": {
"url": "https://github.com/rthaut/deviantART-Filter/issues"
},
"browserslist": [
"chrome >= 49.0",
"edge >= 79.0",
"firefox >= 62.0"
],
"dependencies": {
"@emotion/react": "11.11.3",
"@emotion/styled": "11.11.0",
"@material-table/core": "6.2",
"@mui/icons-material": "5.15.5",
"@mui/lab": "5.0.0-alpha.161",
"@mui/material": "5.15.5",
"lodash-es": "4.17.21",
"material-ui-confirm": "3.0.9",
"notistack": "2.0.8",
"react": "17.0.2",
"react-dom": "17.0.2",
"react-dropzone": "14.2.3",
"react-router-dom": "5.3.4",
"react-use": "17.4.3",
"semver": "7.5.4",
"webextension-polyfill": "^0.10.0"
},
"devDependencies": {
"@babel/preset-react": "^7.23.3",
"@webextension-toolbox/webextension-toolbox": "^6.2.0",
"browser-sync": "^3.0.2",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-react": "^7.33.2",
"npm-run-all": "^4.1.5",
"patch-package": "^8.0.0",
"prettier": "^3.2.4",
"svg2png": "^4.1.1",
"web-ext": "^7.10.0",
"webpack-bundle-analyzer": "^4.10.1"
}
}