-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 2.24 KB
/
Copy pathpackage.json
File metadata and controls
76 lines (76 loc) · 2.24 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
{
"name": "plexams.gui",
"version": "0.0.2",
"author": "Oliver Braun <oliver.braun@hm.edu>",
"license": "BSD-3-Clause",
"private": true,
"packageManager": "pnpm@11.9.0",
"scripts": {
"dev": "vite dev",
"devhost": "vite dev --host",
"update-schema.graphql": "bash -lc 'set -a && [ -f .env ] && . .env || true; pnpm dlx get-graphql-schema \"$PLEXAMS_SERVER\" > schema.graphql && pnpm codegen'",
"codegen": "graphql-codegen",
"build": "vite build",
"package": "svelte-kit package",
"preview": "vite preview",
"check": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json",
"check:watch": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json --watch",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"test:e2e": "playwright test",
"lint": "prettier --check . && eslint .",
"format": "prettier --write .",
"prepare": "husky"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@graphql-codegen/cli": "^5.0.7",
"@graphql-codegen/typescript": "^4.1.6",
"@graphql-codegen/typescript-operations": "^4.6.1",
"@playwright/test": "1.61.1",
"@svelte-plugins/tooltips": "^3.0.3",
"@sveltejs/adapter-node": "^5.2.12",
"@sveltejs/kit": "^2.22.2",
"@sveltejs/vite-plugin-svelte": "^5.1.0",
"@tailwindcss/postcss": "^4.1.11",
"@tailwindcss/typography": "^0.5.16",
"@vitest/coverage-v8": "^4.1.9",
"daisyui": "^5.0.43",
"eslint": "^10.6.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-svelte": "^3.20.0",
"globals": "^17.7.0",
"husky": "^9.1.7",
"lint-staged": "^17.0.8",
"prettier": "^3.6.2",
"prettier-plugin-svelte": "^3.4.0",
"svelte": "^5.34.8",
"svelte-check": "^4.2.2",
"tailwindcss": "^4.1.11",
"theme-change": "^2.5.0",
"tslib": "^2.8.1",
"typescript": "^5.8.3",
"typescript-eslint": "^8.62.1",
"vite": "^6.3.5",
"vitest": "^4.1.9"
},
"type": "module",
"lint-staged": {
"*.{js,ts,svelte}": [
"eslint --fix",
"prettier --write"
],
"*.{json,css,html,md,yaml,yml}": "prettier --write"
},
"dependencies": {
"ansi-to-html": "^0.7.2",
"dotenv": "^16.6.0",
"graphql": "^16.11.0",
"graphql-request": "^7.2.0",
"graphql-tag": "^2.12.6",
"graphql-ws": "^6.0.8",
"html-to-image": "^1.11.13",
"jszip": "^3.10.1"
}
}