-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
114 lines (114 loc) · 3.9 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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
{
"name": "special-eureka",
"version": "0.2.0",
"scripts": {
"vite:dev": "vite dev",
"codegen": "graphql-codegen",
"codegen:mangadex": "pnpm codegen -c ./src/lib/mangadex/codegen.ts",
"vite:build_preview": "pnpm vite:build && pnpm vite:preview",
"vite:build": "vite build --emptyOutDir",
"vite:preview": "vite preview --port 9305",
"dev": "tauri dev",
"build": "tauri build",
"preview": "pnpm vite:preview",
"test": "npm run test:integration && npm run test:unit",
"check": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json",
"check:watch": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json --watch",
"lint": "prettier --check . && eslint .",
"format": "prettier --write .",
"test:integration": "playwright test",
"test:unit": "vitest",
"cargo:clean": "cargo clean --manifest-path ./src-tauri/Cargo.toml",
"cargo:clippy": "cargo clippy --manifest-path ./src-tauri/Cargo.toml",
"cargo:build": "cargo build --manifest-path ./src-tauri/Cargo.toml",
"storybook:dev": "storybook dev -p 9305 --no-open",
"build-storybook": "storybook build"
},
"devDependencies": {
"@chromatic-com/storybook": "^2.0.2",
"@graphql-codegen/cli": "^5.0.4",
"@graphql-codegen/client-preset": "^4.6.1",
"@melt-ui/pp": "^0.3.2",
"@melt-ui/svelte": "^0.86.2",
"@parcel/watcher": "^2.5.1",
"@playwright/test": "^1.50.1",
"@storybook/addon-essentials": "^8.5.3",
"@storybook/addon-interactions": "^8.5.3",
"@storybook/addon-links": "^8.5.3",
"@storybook/addon-mdx-gfm": "^8.5.3",
"@storybook/blocks": "^8.5.3",
"@storybook/svelte": "^8.5.3",
"@storybook/sveltekit": "^8.5.3",
"@storybook/test": "^8.5.3",
"@sveltejs/adapter-auto": "^4.0.0",
"@sveltejs/adapter-static": "^3.0.8",
"@sveltejs/kit": "^2.17.1",
"@sveltejs/vite-plugin-svelte": "^5.0.3",
"@tauri-apps/cli": "^2.2.7",
"@types/lodash": "^4.17.15",
"@types/react": "^18.3.18",
"@types/react-dom": "^18.3.5",
"@types/toastify-js": "^1.12.3",
"@types/uuid": "^10.0.0",
"@typescript-eslint/eslint-plugin": "^8.23.0",
"@typescript-eslint/parser": "^8.23.0",
"eslint": "^9.19.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-storybook": "^0.8.0",
"eslint-plugin-svelte": "^2.46.1",
"graphql": "^16.10.0",
"graphql-config": "^5.1.3",
"less": "^4.2.2",
"prettier": "^3.4.2",
"prettier-plugin-svelte": "^3.3.3",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"sass": "^1.83.4",
"storybook": "^8.5.3",
"svelte": "^5.19.7",
"svelte-awesome-color-picker": "^3.1.4",
"svelte-check": "^4.1.4",
"svelte-markdown": "^0.4.1",
"svelte2tsx": "~0.7.34",
"tslib": "^2.8.1",
"typescript": "^5.7.3",
"vite": "^6.0.11",
"vite-plugin-kit-routes": "^0.8.0",
"vitest": "^2.1.9"
},
"type": "module",
"dependencies": {
"@floating-ui/dom": "^1.6.13",
"@fontsource-variable/josefin-sans": "^5.1.1",
"@fontsource-variable/noto-sans-jp": "^5.1.1",
"@fontsource/pacifico": "^5.1.1",
"@fontsource/poppins": "^5.1.1",
"@graphiql/toolkit": "~0.11.1",
"@graphql-typed-document-node/core": "^3.2.0",
"@panzoom/panzoom": "^4.6.0",
"@storybook/addon-a11y": "^8.5.3",
"@tauri-apps/api": "^2.2.0",
"@tauri-apps/plugin-clipboard-manager": "^2.2.1",
"@tauri-apps/plugin-opener": "^2.2.5",
"@urql/svelte": "^4.2.2",
"fast-xml-parser": "^4.5.1",
"flag-icons": "^7.3.2",
"graphiql": "^3.8.3",
"lodash": "^4.17.21",
"medium-zoom": "^1.1.0",
"millify": "^6.1.0",
"mizuki-graphiql-fetcher": "^1.0.1",
"mizuki-urql-adapter": "^1.0.1",
"panzoom": "^9.4.3",
"svelte-feather-icons": "^4.2.0",
"svelte-remixicon": "^2.7.0",
"swiper": "^11.2.2",
"timeago.js": "^4.0.2",
"toastify-js": "^1.12.0",
"uuid": "^10.0.0"
},
"packageManager": "[email protected]",
"engines": {
"node": ">=20"
}
}