forked from wundergraph/wundergraph
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 1.22 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
{
"name": "wundergraph-sveltekit",
"version": "0.0.1",
"scripts": {
"start": "npm run dev",
"dev": "concurrently \"npm run wundergraph\" \"npm run dev:vite\" \"npm run browser\"",
"dev:vite": "vite --port 3000",
"build": "npm run build:wundergraph && vite build",
"preview": "vite preview",
"check": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json",
"check:watch": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json --watch",
"wundergraph": "wunderctl up",
"browser": "wait-on \"http-get://localhost:3000\" && wait-on \"http-get://localhost:9991\" && open-cli http://localhost:5173",
"build:wundergraph": "wunderctl generate"
},
"devDependencies": {
"@fontsource/fira-mono": "^4.5.10",
"@neoconfetti/svelte": "^1.0.0",
"@sveltejs/adapter-auto": "^2.0.0",
"@sveltejs/kit": "^1.5.0",
"@types/cookie": "^0.5.1",
"concurrently": "^7.6.0",
"svelte": "^3.54.0",
"svelte-check": "^3.0.1",
"tslib": "^2.4.1",
"typescript": "^5.0.0",
"vite": "^4.2.0",
"wait-on": "^7.0.1"
},
"dependencies": {
"@tanstack/svelte-query": "^4.29.1",
"@wundergraph/sdk": "^0.184.2",
"@wundergraph/svelte-query": "^0.3.33"
},
"type": "module"
}