-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.6 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
{
"name": "sync-marks-extension",
"private": true,
"version": "1.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"copy": "cp public/manifest.json dist/manifest.json && mkdir -p dist/icons && cp -r public/icons dist/",
"build:extension": "vite build && npm run copy",
"dev:extension": "vite build --watch && npm run copy",
"lint": "eslint . --ext js,jsx --report-unused-disable-directives --max-warnings 0",
"preview": "vite preview",
"test": "vitest",
"coverage": "vitest run --coverage"
},
"dependencies": {
"classnames": "^2.5.1",
"firebase": "^11.0.2",
"firebase-admin": "^13.0.1",
"flowbite-react": "^0.10.2",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-hook-form": "^7.53.2",
"react-router-dom": "^7.0.2",
"uuid": "^11.0.3"
},
"devDependencies": {
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.0.1",
"@testing-library/user-event": "^14.5.2",
"@types/chrome": "^0.0.287",
"@types/node": "^22.10.1",
"@types/react": "^18.3.13",
"@types/react-dom": "^18.3.1",
"@types/uuid": "^10.0.0",
"@typescript-eslint/eslint-plugin": "^8.17.0",
"@typescript-eslint/parser": "^8.17.0",
"@vitejs/plugin-react": "^4.3.4",
"@vitest/coverage-v8": "^2.1.8",
"autoprefixer": "^10.4.20",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-react": "^7.37.2",
"jsdom": "^25.0.1",
"postcss": "^8.4.49",
"prettier": "3.4.2",
"tailwindcss": "^3.4.16",
"typescript": "^5.7.2",
"vite": "^6.0.2",
"vitest": "^2.1.8"
}
}