-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.46 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.46 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
{
"name": "lecture-recording-player",
"private": true,
"version": "1.0.0",
"type": "module",
"scripts": {
"dev": "vite --host",
"build": "vue-tsc -b && vite build",
"preview": "vite preview",
"prepare": "husky",
"lint": "eslint . --fix",
"format": "dprint fmt",
"format:check": "dprint check",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage"
},
"lint-staged": {
"**/*.{ts,vue,css,md}": [
"eslint --fix",
"dprint fmt"
]
},
"dependencies": {
"@floating-ui/vue": "^1.1.9",
"@fluentui/svg-icons": "^1.1.313",
"daisyui": "^5.4.7",
"pdfjs-dist": "^5.4.394",
"pinia": "^3.0.4",
"tailwindcss": "^4.1.17",
"vue": "^3.5.24",
"vue-virtual-scroller": "^2.0.0-beta.8"
},
"devDependencies": {
"@pinia/testing": "^1.0.3",
"@tailwindcss/vite": "^4.1.17",
"@types/node": "^22.19.0",
"@vitejs/plugin-vue": "^6.0.1",
"@vitest/coverage-v8": "^4.0.8",
"@vue/eslint-config-prettier": "^10.2.0",
"@vue/eslint-config-typescript": "^14.6.0",
"@vue/test-utils": "^2.4.6",
"@vue/tsconfig": "^0.8.1",
"dprint": "^0.50.2",
"eslint": "^9.39.1",
"eslint-plugin-vue": "^10.5.1",
"husky": "^9.1.7",
"jsdom": "^27.1.0",
"lint-staged": "^16.2.6",
"typescript": "^5.9.3",
"vite": "^7.2.2",
"vite-plugin-singlefile": "^2.3.0",
"vitest": "^4.0.8",
"vue-tsc": "^3.1.3",
"zod": "^4.1.12"
}
}