-
Notifications
You must be signed in to change notification settings - Fork 30
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 2.02 KB
/
Copy pathpackage.json
File metadata and controls
64 lines (64 loc) · 2.02 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
{
"name": "sms-backup-reader-2-workspace",
"version": "1.0.0",
"private": true,
"type": "module",
"description": "SMS Backup Reader 2 rewrite workspace",
"workspaces": [
"packages/lib"
],
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"lint": "eslint . --report-unused-disable-directives --max-warnings 0 && npm run lint:md",
"lint:md": "markdownlint \"**/*.md\" --ignore node_modules --ignore packages/lib/node_modules --ignore agents --ignore packages/lib/coverage",
"format": "prettier --write .",
"format:check": "prettier --check .",
"test": "vitest",
"test:run": "vitest run",
"test:e2e": "playwright test",
"test:e2e:ui": "playwright test --ui",
"test:e2e:debug": "playwright test --debug",
"test:e2e:report": "playwright show-report"
},
"dependencies": {
"@fontsource/noto-sans": "^5.2.10",
"@sms-backup-reader/lib": "*",
"i18next": "^26.3.6",
"react": "^19.2.7",
"react-dom": "^19.2.7",
"react-i18next": "^17.0.9",
"react-window": "^2.2.7"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@playwright/test": "^1.61.1",
"@tailwindcss/vite": "^4.3.2",
"@testing-library/dom": "^10.4.1",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@types/node": "^26.1.1",
"@types/react": "^19.2.17",
"@types/react-dom": "^19.2.3",
"@typescript-eslint/eslint-plugin": "^8.63.0",
"@typescript-eslint/parser": "^8.63.0",
"@vitejs/plugin-react": "^6.0.3",
"@vitest/coverage-v8": "^4.1.10",
"autoprefixer": "^10.5.2",
"eslint": "^10.7.0",
"eslint-plugin-react-hooks": "^7.1.1",
"eslint-plugin-react-refresh": "^0.5.3",
"fake-indexeddb": "^6.2.5",
"globals": "^17.7.0",
"jsdom": "^29.1.1",
"markdownlint-cli": "^0.49.0",
"postcss": "^8.5.18",
"prettier": "^3.9.5",
"tailwindcss": "^4.3.2",
"typescript": "^5.9.3",
"typescript-eslint": "^8.63.0",
"vite": "^8.1.4",
"vitest": "^4.1.10"
}
}