-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.31 KB
/
Copy pathpackage.json
File metadata and controls
43 lines (43 loc) · 1.31 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
{
"name": "mintza",
"private": true,
"version": "1.19.11",
"type": "module",
"description": "From talk to insight — PWA de transcripción y resúmenes de reuniones",
"scripts": {
"dev": "vite",
"build": "tsc --noEmit && vite build",
"preview": "vite preview",
"test": "vitest",
"test:run": "vitest run",
"test:coverage": "vitest run --coverage",
"typecheck": "tsc --noEmit",
"lint": "eslint \"src/**/*.ts\" \"test/**/*.ts\"",
"lint:fix": "eslint --fix \"src/**/*.ts\" \"test/**/*.ts\"",
"format": "prettier --write \"src/**/*.{ts,css}\" \"test/**/*.ts\"",
"format:check": "prettier --check \"src/**/*.{ts,css}\" \"test/**/*.ts\""
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@types/node": "^26.2.0",
"@typescript-eslint/eslint-plugin": "^8.67.0",
"@typescript-eslint/parser": "^8.67.0",
"@vitest/coverage-v8": "^4.1.10",
"autoprefixer": "^10.5.4",
"eslint": "^10.8.1",
"eslint-config-prettier": "^10.1.8",
"fake-indexeddb": "^6.2.5",
"globals": "^17.11.0",
"happy-dom": "^20.11.2",
"postcss": "^8.5.26",
"prettier": "^3.9.6",
"tailwindcss": "^3.4.1",
"typescript": "^5.3.3",
"typescript-eslint": "^8.67.0",
"vite": "^8.2.1",
"vitest": "^4.1.10"
},
"dependencies": {
"jspdf": "^4.2.1"
}
}