-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
98 lines (98 loc) · 2.98 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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
{
"name": "prod-guard",
"version": "2.0.1",
"private": true,
"type": "module",
"scripts": {
"start": "web-ext run -s dist --devtools",
"build": "webpack",
"build:watch": "webpack --watch",
"build:prod": "cross-env NODE_ENV=production webpack",
"changeset": "changeset",
"package": "web-ext build -s dist -o",
"lint": "run-p 'lint:**' 'format:check'",
"lint:js": "eslint .",
"lint:web-ext": "web-ext lint -s dist",
"lint:typecheck": "tsc --noEmit",
"test": "vitest",
"e2e": "xvfb-run playwright test",
"format": "prettier --write '**/*.{ts,tsx,js,jsx,json}'",
"format:check": "prettier --check '**/*.{ts,tsx,js,jsx,json}'",
"prepare": "husky"
},
"packageManager": "pnpm@9.14.2",
"devDependencies": {
"@babel/core": "^7.26.0",
"@babel/preset-env": "^7.26.0",
"@babel/preset-react": "^7.25.9",
"@babel/preset-typescript": "^7.26.0",
"@changesets/changelog-github": "^0.5.0",
"@changesets/cli": "^2.27.10",
"@emotion/babel-plugin": "^11.13.5",
"@eslint/js": "^9.15.0",
"@playwright/test": "^1.49.0",
"@testing-library/react": "^16.0.1",
"@testing-library/user-event": "^14.5.2",
"@tsconfig/recommended": "^1.0.8",
"@types/eslint-config-prettier": "^6.11.3",
"@types/eslint__js": "^8.42.3",
"@types/lodash-es": "^4.17.12",
"@types/react": "^18.3.12",
"@types/react-dom": "^18.3.1",
"@types/uuid": "^10.0.0",
"@types/webextension-polyfill": "^0.12.1",
"babel-loader": "^9.2.1",
"copy-webpack-plugin": "^12.0.2",
"cross-env": "^7.0.3",
"css-loader": "^7.1.2",
"eslint": "^9.15.0",
"eslint-config-prettier": "^9.1.0",
"html-webpack-plugin": "^5.6.3",
"http-server": "^14.1.1",
"husky": "^9.1.7",
"jsdom": "^25.0.1",
"lint-staged": "^15.2.10",
"lodash": "^4.17.21",
"npm-run-all2": "^7.0.1",
"prettier": "^3.3.3",
"sharp": "^0.33.5",
"style-loader": "^4.0.0",
"typescript": "^5.7.2",
"typescript-eslint": "^8.15.0",
"vitest": "^2.1.5",
"web-ext": "^8.3.0",
"webpack": "^5.96.1",
"webpack-clean-plugin": "^0.2.3",
"webpack-cli": "^5.1.4"
},
"dependencies": {
"@emotion/css": "^11.13.5",
"@emotion/react": "^11.13.5",
"@emotion/styled": "^11.13.5",
"@fontsource-variable/roboto-mono": "^5.1.0",
"@fontsource/roboto": "^5.1.0",
"@fortawesome/fontawesome-free": "^6.7.1",
"@tanstack/react-query": "^4.36.1",
"@trpc/client": "^10.45.2",
"@trpc/react-query": "^10.45.2",
"@trpc/server": "^10.45.2",
"lodash-es": "^4.17.21",
"raf-throttle": "^2.0.6",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-hook-form": "^7.53.2",
"react-router": "^6.28.0",
"react-router-dom": "^6.28.0",
"react-use": "^17.5.1",
"trpc-chrome": "^1.0.0",
"uuid": "^11.0.3",
"webextension-polyfill": "^0.12.0",
"zod": "^3.23.8",
"zod-validation-error": "^3.4.0"
},
"lint-staged": {
"*.{ts,tsx,js,jsx,json}": [
"prettier --write"
]
}
}