-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
92 lines (92 loc) · 2.6 KB
/
Copy pathpackage.json
File metadata and controls
92 lines (92 loc) · 2.6 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
{
"name": "console-frontend",
"version": "0.0.1",
"private": true,
"packageManager": "pnpm@11.9.0",
"scripts": {
"build": "vite build",
"check-outdated": "pnpm outdated",
"check:watch": "svelte-check --tsconfig ./tsconfig.json --watch",
"check": "pnpm exec houdini generate && svelte-check --tsconfig ./tsconfig.json --fail-on-warnings",
"dev-live-share": "vite dev --host ::",
"dev": "vite dev",
"eslint": "eslint .",
"format": "prettier --write .",
"lint-staged": "lint-staged",
"lint": "prettier --check . && eslint .",
"prepare": "svelte-kit sync || echo ''",
"preview": "vite preview",
"test": "vitest",
"update-outdated": "pnpm update --latest"
},
"devDependencies": {
"@eslint/compat": "2.1.0",
"@eslint/js": "10.0.1",
"@layerstack/utils": "2.0.0-next.18",
"@nais/ds-svelte-community": "2.0.0-next.8",
"@sveltejs/adapter-node": "5.5.4",
"@sveltejs/kit": "2.65.1",
"@sveltejs/vite-plugin-svelte": "7.1.2",
"@tailwindcss/vite": "4.3.1",
"@types/d3-array": "3.2.2",
"@types/d3-time": "3.0.4",
"@types/luxon": "3.7.1",
"@types/sortablejs": "1.15.9",
"date-fns": "4.4.0",
"esbuild": "0.28.1",
"eslint": "10.5.0",
"eslint-config-prettier": "10.1.8",
"eslint-plugin-svelte": "3.19.0",
"eslint-plugin-unicorn": "66.0.0",
"globals": "17.6.0",
"houdini": "2.0.0-next.12",
"houdini-svelte": "3.0.0-next.14",
"husky": "9.1.7",
"lint-staged": "17.0.7",
"pino-pretty": "13.1.3",
"prettier": "3.8.4",
"prettier-plugin-svelte": "4.1.0",
"prettier-plugin-tailwindcss": "0.8.0",
"svelte": "5.56.3",
"svelte-check": "4.6.0",
"tailwindcss": "4.3.1",
"typescript": "6.0.3",
"typescript-eslint": "8.61.0",
"vite": "8.0.16",
"vitest": "4.1.9"
},
"type": "module",
"dependencies": {
"@codemirror/language": "6.12.3",
"@codemirror/state": "6.6.0",
"@codemirror/theme-one-dark": "6.1.3",
"@codemirror/view": "6.43.1",
"@prometheus-io/codemirror-promql": "0.311.3",
"@slack/types": "2.21.1",
"@slack/web-api": "7.17.0",
"cron-parser": "5.5.0",
"cronstrue": "3.14.0",
"d3-array": "3.2.4",
"d3-time": "3.1.0",
"graphql": "16.14.2",
"graphql-sse": "2.6.0",
"layerchart": "2.0.0-next.65",
"luxon": "3.7.2",
"pino": "10.3.1",
"pretty-bytes": "7.1.0",
"sortablejs": "1.15.7",
"svelte-highlight": "7.11.0",
"yaml": "2.9.0"
},
"lint-staged": {
"*.{js,ts,svelte,gql,css,md,json}": "prettier --write",
"*.{js,ts,svelte,gql}": [
"eslint --fix",
"svelte-check --tsconfig ./tsconfig.json --fail-on-warnings"
]
},
"graphql": {
"schema": "https://localhost:3000/graphql",
"documents": "**/*.{graphql,js,ts,jsx,tsx,svelte}"
}
}