-
Notifications
You must be signed in to change notification settings - Fork 54
Expand file tree
/
Copy pathpackage.json
More file actions
95 lines (95 loc) · 3.16 KB
/
Copy pathpackage.json
File metadata and controls
95 lines (95 loc) · 3.16 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
{
"name": "tutors",
"private": true,
"version": "15.2.0",
"type": "module",
"scripts": {
"dev": "vite dev",
"build": "vite build",
"preview": "vite preview",
"prepare": "svelte-kit sync || echo ''",
"check": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json",
"check:watch": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json --watch",
"format": "prettier --write .",
"lint": "prettier --check . && eslint .",
"test": "vitest",
"test:unit": "vitest run --coverage",
"test:components": "vitest run tests/components",
"test:integration": "vitest run tests/integration",
"test:e2e": "playwright test",
"test:e2e:ui": "playwright test --ui",
"test:watch": "vitest",
"test:changed": "vitest related --run",
"test:mutation": "stryker run",
"test:mutation:incremental": "stryker run --incremental",
"test:all": "npm run test:unit && npm run test:e2e",
"knip": "knip"
},
"devDependencies": {
"@auth/core": "^0.41.2",
"@auth/sveltekit": "1.11.2",
"@eslint/compat": "^2.1.0",
"@eslint/js": "^10.0.1",
"@faker-js/faker": "^10.5.0",
"@iconify/svelte": "^5.2.1",
"@playwright/test": "^1.61.1",
"@skeletonlabs/skeleton": "^4.15.2",
"@skeletonlabs/skeleton-svelte": "^4.15.2",
"@stryker-mutator/core": "^9.6.1",
"@stryker-mutator/vitest-runner": "^9.6.1",
"@supabase/supabase-js": "^2.108.0",
"@sveltejs/adapter-auto": "^7.0.1",
"@sveltejs/adapter-netlify": "^6.0.4",
"@sveltejs/kit": "^2.64.0",
"@sveltejs/vite-plugin-svelte": "^7.1.2",
"@tailwindcss/forms": "^0.5.11",
"@tailwindcss/typography": "^0.5.20",
"@tailwindcss/vite": "^4.3.0",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/svelte": "^5.4.2",
"@testing-library/user-event": "^14.6.1",
"@types/dompurify": "^3.0.5",
"@types/node": "^25.9.2",
"@vitest/browser": "^3.2.7",
"@vitest/coverage-v8": "^3.2.7",
"@vitest/ui": "^3.2.7",
"eslint": "^10.4.1",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-svelte": "^3.19.0",
"file-saver": "^2.0.5",
"globals": "^17.6.0",
"happy-dom": "^15.11.7",
"husky": "^9.1.7",
"jheat.js": "^5.2.0",
"knip": "^6.26.0",
"lint-staged": "^15.5.2",
"loglevel": "^1.9.2",
"msw": "^2.15.0",
"partysocket": "^1.1.19",
"pdfjs-dist": "^6.0.227",
"prettier": "^3.8.3",
"prettier-plugin-svelte": "^4.1.0",
"prettier-plugin-tailwindcss": "^0.8.0",
"shiki": "^4.2.0",
"shiki-transformer-copy-button": "^0.0.6",
"svelte": "^5.56.3",
"svelte-check": "^4.6.0",
"tailwindcss": "^4.3.0",
"typescript": "^6.0.3",
"typescript-eslint": "^8.61.0",
"vite": "^8.0.16",
"vitest": "^3.2.7"
},
"dependencies": {
"@codemirror/lang-python": "^6.2.1",
"@codemirror/state": "^6.7.1",
"@codemirror/theme-one-dark": "^6.1.3",
"@codemirror/view": "^6.43.6",
"@marp-team/marp-core": "^4.3.1",
"@tutors/tutors-model-lib": "npm:@jsr/tutors__tutors-model-lib@^5.0.4",
"@tutors/tutors-time-lib": "npm:@jsr/tutors__tutors-time-lib@^5.0.4",
"codemirror": "^6.0.2",
"dompurify": "^3.4.12",
"mermaid": "^11.16.0"
}
}