-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
89 lines (89 loc) · 2.51 KB
/
package.json
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
{
"name": "console-frontend",
"version": "0.0.1",
"private": true,
"scripts": {
"prepare": "husky",
"dev": "vite dev",
"dev-live-share": "vite dev --host ::",
"build": "vite build",
"preview": "vite preview",
"check": "npx houdini generate && svelte-check --tsconfig ./tsconfig.json --fail-on-warnings",
"check:watch": "svelte-check --tsconfig ./tsconfig.json --watch",
"lint": "prettier --check . && eslint .",
"eslint": "eslint .",
"format": "prettier --write .",
"test": "vitest",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build",
"lint-staged": "lint-staged"
},
"devDependencies": {
"@chromatic-com/storybook": "^3.2.5",
"@eslint/compat": "^1.2.7",
"@nais/ds-svelte-community": "^1.0.0-next.22",
"@navikt/ds-css": "^7.17.0",
"@storybook/addon-essentials": "^8.6.4",
"@storybook/addon-interactions": "^8.6.4",
"@storybook/addon-svelte-csf": "^5.0.0-next.27",
"@storybook/blocks": "^8.6.4",
"@storybook/svelte": "^8.6.4",
"@storybook/sveltekit": "^8.6.4",
"@storybook/test": "^8.6.4",
"@sveltejs/adapter-node": "^5.2.12",
"@sveltejs/kit": "^2.18.0",
"@sveltejs/vite-plugin-svelte": "^4.0.0",
"@types/amplitude-js": "^8.16.5",
"@types/luxon": "^3.4.2",
"@typescript-eslint/eslint-plugin": "^8.26.0",
"@typescript-eslint/parser": "^8.26.0",
"date-fns": "^4.1.0",
"eslint": "^9.21.0",
"eslint-config-prettier": "^10.0.2",
"eslint-plugin-storybook": "^0.11.4",
"eslint-plugin-svelte": "^3.0.3",
"houdini": "^1.5.3",
"houdini-svelte": "^2.1.7",
"husky": "^9.1.7",
"lint-staged": "^15.5.0",
"prettier": "^3.5.3",
"prettier-plugin-svelte": "^3.3.3",
"storybook": "^8.6.4",
"svelte": "^5.22.5",
"svelte-check": "^4.1.4",
"tslib": "^2.8.1",
"typescript": "^5.7.3",
"typescript-eslint": "^8.26.0",
"vite": "^5.0.0",
"vitest": "^3.0.7"
},
"type": "module",
"dependencies": {
"@slack/types": "^2.14.0",
"@slack/web-api": "^7.8.0",
"amplitude-js": "^8.21.9",
"bytes-iec": "^3.1.1",
"cron-parser": "^5.0.4",
"cronstrue": "^2.56.0",
"echarts": "^5.6.0",
"eslint-plugin-unicorn": "^57.0.0",
"graphql": "^16.10.0",
"graphql-sse": "^2.5.4",
"luxon": "^3.5.0",
"pretty-bytes": "^6.1.1",
"svelte-floating-ui": "^1.5.9",
"svelte-highlight": "^7.8.2"
},
"overrides": {
"@sveltejs/kit": {
"cookie": "^0.7.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"
]
}
}