forked from wundergraph/wundergraph
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.23 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
{
"name": "wundergraph-vite-solidjs",
"version": "0.0.0",
"description": "",
"scripts": {
"start": "concurrently \"npm run dev:vite\" \"npm run wundergraph\" \"npm run browser\"",
"check": "tsc --noEmit",
"clean": "rimraf ./.next",
"wundergraph": "wunderctl up",
"browser": "wait-on \"http-get://localhost:3000\" && wait-on \"http-get://localhost:9991\" && open-cli http://localhost:5173",
"dev:vite": "vite",
"build:vite": "vite build",
"build:wundergraph": "wunderctl generate",
"build": "npm run build:wundergraph && npm run build:vite",
"preview": "vite preview",
"test": "jest"
},
"license": "MIT",
"devDependencies": {
"@jest/globals": "^29.4.3",
"@types/node": "^18.13.0",
"@types/node-fetch": "^2.6.2",
"autoprefixer": "^10.4.13",
"concurrently": "^7.6.0",
"esbuild": "^0.17.8",
"jest": "^29.4.3",
"node-fetch": "^2.6.7",
"postcss": "^8.4.19",
"rollup": "^3.15.0",
"ts-jest": "^29.0.5",
"typescript": "^4.9.5",
"vite": "^4.1.1",
"vite-plugin-solid": "^2.5.0"
},
"dependencies": {
"@tanstack/solid-query": "^4.24.6",
"@wundergraph/sdk": "^0.167.1",
"@wundergraph/solid-query": "^0.4.48",
"solid-js": "^1.6.10"
}
}