-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.21 KB
/
Copy pathpackage.json
File metadata and controls
40 lines (40 loc) · 1.21 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
{
"name": "mintza",
"private": true,
"version": "1.19.5",
"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": {
"@types/node": "^20.19.43",
"@typescript-eslint/eslint-plugin": "^7.18.0",
"@typescript-eslint/parser": "^7.18.0",
"@vitest/coverage-v8": "^1.6.0",
"autoprefixer": "^10.5.2",
"eslint": "^8.57.1",
"eslint-config-prettier": "^10.1.8",
"fake-indexeddb": "^5.0.2",
"happy-dom": "^20.10.6",
"postcss": "^8.5.18",
"prettier": "^3.9.5",
"tailwindcss": "^3.4.1",
"typescript": "^5.3.3",
"vite": "^5.1.0",
"vitest": "^1.6.0"
},
"dependencies": {
"jspdf": "^4.2.1"
}
}