-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.66 KB
/
Copy pathpackage.json
File metadata and controls
47 lines (47 loc) · 1.66 KB
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
{
"name": "tab-group-sync",
"version": "1.3.0",
"type": "module",
"scripts": {
"build": "tsc && vite build && BUILD_BACKGROUND=true vite build && node scripts/copy-extension-files.js",
"watch": "tsc && vite build --watch",
"test": "vitest --run",
"test:watch": "vitest",
"test:ui": "vitest --ui",
"test:coverage": "vitest --run --coverage",
"test:e2e": "npm run build && playwright test --config tests/e2e/playwright.config.ts",
"test:e2e:ui": "npm run build && playwright test --config tests/e2e/playwright.config.ts --ui",
"test:e2e:debug": "npm run build && playwright test --config tests/e2e/playwright.config.ts --debug",
"test:e2e:headed": "npm run build && playwright test --config tests/e2e/playwright.config.ts --headed",
"postbuild": "node scripts/deploy-to-build-folder.js"
},
"dependencies": {
"@emotion/react": "^11.14.0",
"@emotion/styled": "^11.14.0",
"@leeoniya/ufuzzy": "^1.0.19",
"@mui/icons-material": "^6.3.0",
"@mui/lab": "^6.0.0-beta.21",
"@mui/material": "^6.3.0",
"@mui/x-tree-view": "^7.23.2",
"react": "^18.3.1",
"react-dom": "^18.3.1"
},
"devDependencies": {
"@playwright/test": "^1.58.2",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@types/chrome": "^0.0.260",
"@types/node": "^22.10.4",
"@types/react": "^18.3.18",
"@types/react-dom": "^18.3.5",
"@vitejs/plugin-react": "^4.2.1",
"@vitest/coverage-v8": "^4.0.18",
"@vitest/ui": "^4.0.18",
"fast-check": "^4.5.3",
"happy-dom": "^20.5.3",
"playwright": "^1.58.2",
"typescript": "^5.3.3",
"vite": "^5.0.12",
"vitest": "^4.0.18"
}
}