-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 2.04 KB
/
Copy pathpackage.json
File metadata and controls
71 lines (71 loc) · 2.04 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
{
"name": "glabs.gui",
"version": "0.0.0",
"author": "Oliver Braun <[email protected]>",
"license": "BSD-3-Clause",
"private": true,
"packageManager": "[email protected]",
"type": "module",
"scripts": {
"dev": "graphql-codegen && vite dev",
"devhost": "graphql-codegen && vite dev --host",
"build": "graphql-codegen && vite build",
"preview": "vite preview",
"codegen": "graphql-codegen",
"codegen:watch": "graphql-codegen --watch",
"schema:pull": "node scripts/pull-schema.mjs",
"check": "graphql-codegen && svelte-kit sync && svelte-check --tsconfig ./tsconfig.json",
"check:watch": "graphql-codegen && svelte-kit sync && svelte-check --tsconfig ./tsconfig.json --watch",
"test": "vitest run",
"test:watch": "vitest",
"lint": "prettier --check . && eslint .",
"format": "prettier --write .",
"prepare": "husky"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@graphql-codegen/cli": "^7.2.0",
"@graphql-codegen/client-preset": "^6.1.0",
"@sveltejs/adapter-node": "^5.2.12",
"@sveltejs/kit": "^2.22.2",
"@sveltejs/vite-plugin-svelte": "^7.1.2",
"@tailwindcss/postcss": "^4.1.11",
"@tailwindcss/typography": "^0.5.16",
"@types/node": "^26.1.1",
"daisyui": "^5.6.18",
"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": "^4.1.1",
"svelte": "^5.34.8",
"svelte-check": "^4.2.2",
"svelte2tsx": "^0.7.58",
"tailwindcss": "^4.1.11",
"theme-change": "^3.0.4",
"tslib": "^2.8.1",
"typescript": "^5.8.3",
"typescript-eslint": "^8.62.1",
"vite": "^6.3.5",
"vitest": "^4.1.9"
},
"dependencies": {
"@graphql-typed-document-node/core": "^3.2.0",
"ansi-to-html": "^0.7.2",
"dotenv": "^17.4.2",
"fflate": "^0.8.3",
"graphql": "^16.14.2",
"graphql-request": "^7.4.0",
"graphql-ws": "^6.1.0"
},
"lint-staged": {
"*.{js,ts,svelte}": [
"eslint --fix",
"prettier --write"
],
"*.{json,css,html,md,yaml,yml}": "prettier --write"
}
}