forked from wundergraph/wundergraph
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
32 lines (32 loc) · 1.02 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
{
"name": "wundergraph-vite-svelte",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"start": "npm run dev",
"dev": "concurrently \"npm run wundergraph\" \"vite --port 3000\" \"npm run browser\"",
"build": "npm run build:wundergraph && vite build",
"preview": "vite preview",
"check": "svelte-check --tsconfig ./tsconfig.json",
"wundergraph": "wunderctl up --debug",
"browser": "wait-on \"http-get://localhost:3000\" && wait-on \"http-get://localhost:9991\" && open-cli http://localhost:5173",
"build:wundergraph": "wunderctl generate"
},
"devDependencies": {
"@sveltejs/vite-plugin-svelte": "^2.0.3",
"@tsconfig/svelte": "^3.0.0",
"concurrently": "^7.6.0",
"svelte": "^3.55.1",
"svelte-check": "^2.10.3",
"tslib": "^2.5.0",
"typescript": "^4.9.3",
"vite": "^4.2.0",
"wait-on": "^7.0.1"
},
"dependencies": {
"@tanstack/svelte-query": "^4.27.0",
"@wundergraph/sdk": "^0.184.2",
"@wundergraph/svelte-query": "^0.3.33"
}
}