-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
77 lines (77 loc) · 2.34 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
{
"name": "jira-timebooker",
"version": "1.0.0",
"author": "Helge Ahrens",
"description": "Jira extension to book time",
"type": "module",
"license": "MIT",
"keywords": [
"chrome-extension",
"react",
"vite",
"create-chrome-ext"
],
"engines": {
"node": ">=14.18.0"
},
"scripts": {
"dev": "vite --mode testing",
"build": "tsc && vitest --run && vite build",
"preview": "vite preview",
"test": "vitest",
"lint": "eslint --ext .js,.jsx,.ts,.tsx src",
"fmt": "prettier --write '**/*.{tsx,ts,json,css,scss,md}'"
},
"dependencies": {
"@hookform/resolvers": "^3.3.1",
"@radix-ui/react-checkbox": "^1.0.4",
"@radix-ui/react-dialog": "^1.0.4",
"@radix-ui/react-hover-card": "^1.0.7",
"@radix-ui/react-label": "^2.0.2",
"@radix-ui/react-popover": "^1.0.6",
"@radix-ui/react-separator": "^1.0.3",
"@radix-ui/react-slot": "^1.0.2",
"@radix-ui/react-toast": "^1.1.4",
"@radix-ui/react-tooltip": "^1.0.6",
"@tanstack/react-query": "^4.35.3",
"class-variance-authority": "^0.7.0",
"clsx": "^2.0.0",
"cmdk": "^0.2.0",
"date-fns": "^2.30.0",
"lucide-react": "^0.279.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-hook-form": "^7.46.1",
"tailwind-merge": "^1.14.0",
"tailwindcss-animate": "^1.0.7",
"zod": "^3.22.2"
},
"devDependencies": {
"@crxjs/vite-plugin": "^1.0.14",
"@testing-library/jest-dom": "^6.1.3",
"@testing-library/react": "^14.0.0",
"@testing-library/user-event": "^14.5.1",
"@types/chrome": "^0.0.236",
"@types/node": "^20.6.2",
"@types/react": "^18.2.22",
"@types/react-dom": "^18.2.7",
"@typescript-eslint/eslint-plugin": "^6.7.4",
"@typescript-eslint/parser": "^6.7.4",
"@vitejs/plugin-react": "^1.3.2",
"@vitest/browser": "^0.34.6",
"autoprefixer": "^10.4.15",
"eslint": "^8.50.0",
"eslint-config-react-app": "^7.0.1",
"glob": "^9.2.1",
"jsdom": "^22.1.0",
"postcss": "^8.4.30",
"prettier": "^2.7.1",
"tailwindcss": "^3.3.3",
"typescript": "^4.9.5",
"vite": "^4.4.9",
"vite-plugin-eslint": "^1.8.1",
"vite-plugin-zip-pack": "^1.0.5",
"vitest": "^0.34.6",
"webdriverio": "^8.16.20"
}
}