-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
63 lines (63 loc) · 2.16 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
{
"name": "armaria-firefox",
"version": "0.0.3",
"scripts": {
"clean": "rm -rf dist && rm -rf .parcel-cache",
"check": "tsc --noEmit",
"format": "prettier --write \"src/**/*.{ts,tsx}\"",
"lint": "eslint --ext ts,tsx src",
"build-firefox": "./scripts/build.sh firefox",
"build-chrome": "./scripts/build.sh chrome",
"build": "npm run clean && npm run build-firefox && npm run build-chrome",
"storybook": "storybook dev -p 6006",
"vulns": "snyk test",
"test": "tap --node-arg=--require=global-jsdom/register --disable-coverage --allow-empty-coverage run"
},
"dependencies": {
"@hookform/resolvers": "^3.3.2",
"@phosphor-icons/react": "^2.0.15",
"jotai": "^2.5.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-hook-form": "^7.48.2",
"webextension-polyfill": "^0.10.0",
"zod": "^3.22.4"
},
"devDependencies": {
"@storybook/addon-a11y": "^7.5.3",
"@storybook/addon-essentials": "^7.5.3",
"@storybook/addon-interactions": "^7.5.3",
"@storybook/addon-links": "^7.5.3",
"@storybook/addon-onboarding": "^1.0.8",
"@storybook/blocks": "^7.5.3",
"@storybook/react": "^7.5.3",
"@storybook/react-vite": "^7.5.3",
"@storybook/testing-library": "^0.2.2",
"@testing-library/react": "^14.1.2",
"@types/firefox-webext-browser": "^111.0.4",
"@types/react": "^18.2.37",
"@types/react-dom": "^18.2.15",
"@types/webextension-polyfill": "^0.10.7",
"@typescript-eslint/eslint-plugin": "^6.11.0",
"@typescript-eslint/parser": "^6.11.0",
"eslint": "^8.54.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-jsx-a11y": "^6.8.0",
"eslint-plugin-prettier": "^5.0.1",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-storybook": "^0.6.15",
"global-jsdom": "^9.1.0",
"jsdom": "^22.1.0",
"parcel": "^2.10.3",
"parcel-namer-hashless": "^1.0.5",
"postcss": "^8.4.31",
"prettier": "^3.1.0",
"prettier-plugin-organize-imports": "^3.2.4",
"storybook": "^7.5.3",
"tailwindcss": "^3.3.5",
"tap": "^18.6.1",
"typescript": "^5.2.2",
"typescript-language-server": "^4.1.3"
}
}