-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpackage.json
68 lines (68 loc) · 2.02 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
{
"private": true,
"type": "module",
"scripts": {
"build:bundler": "parcel build --no-source-maps --no-scope-hoist",
"build:web-ext": "web-ext build -s dist -a artifacts -o",
"build": "pnpm clean && pnpm build:bundler && pnpm build:web-ext",
"clean": "tsx scripts/clean",
"dev:browser": "tsx scripts/dev-browser",
"dev:bundler": "parcel watch",
"dev": "conc -c auto -k npm:dev:*",
"lint": "eslint .",
"test": "pnpm build:bundler && playwright test -c tests"
},
"dependencies": {
"@jridgewell/resolve-uri": "3.1.1",
"@material-design-icons/font": "0.14.13",
"@rmwc/button": "14.0.7",
"@rmwc/checkbox": "14.0.7",
"@rmwc/elevation": "14.0.7",
"@rmwc/icon": "14.0.7",
"@rmwc/radio": "14.0.7",
"@rmwc/touch-target": "^14.0.7",
"@rmwc/typography": "14.0.7",
"classnames": "2.5.1",
"github-fork-ribbon-css": "0.2.3",
"history": "5.3.0",
"keymaster": "1.6.2",
"ky": "1.2.0",
"lodash": "4.17.21",
"prismjs": "1.29.0",
"process": "0.11.10",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-router-dom": "6.21.3",
"ress": "5.0.2",
"webextension-polyfill": "0.10.0"
},
"devDependencies": {
"@arianrhodsandlot/eslint-config": "0.8.5",
"@parcel/config-webextension": "2.11.0",
"@parcel/core": "2.11.0",
"@parcel/resolver-default": "2.11.0",
"@parcel/transformer-pug": "2.11.0",
"@parcel/transformer-sass": "2.11.0",
"@playwright/test": "1.41.1",
"@tsconfig/create-react-app": "2.0.2",
"@types/firefox-webext-browser": "120.0.0",
"@types/keymaster": "1.6.33",
"@types/lodash": "4.14.202",
"@types/node": "20.11.5",
"@types/prismjs": "1.26.3",
"@types/react": "18.2.48",
"@types/react-dom": "18.2.18",
"concurrently": "8.2.2",
"eslint": "8.56.0",
"parcel": "2.11.0",
"prismjs-components-importer": "0.2.0",
"tsx": "4.7.0",
"typescript": "5.3.3",
"web-ext": "7.10.0",
"zx": "7.2.3"
},
"sideEffects": [
"*.css"
],
"source": "src/manifest.json"
}