-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.33 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.33 KB
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
{
"name": "wundergraph-remix",
"private": true,
"sideEffects": false,
"scripts": {
"start": "concurrently \"npm run dev:remix\" \"npm run wundergraph\" \"npm run browser\"",
"wundergraph": "wunderctl up",
"browser": "wait-on \"http-get://localhost:3000\" && wait-on \"http-get://localhost:9991\" && open-cli http://localhost:3000",
"dev:remix": "remix dev",
"build:wundergraph": "wunderctl generate",
"build:remix": "remix build",
"build": "npm run build:wundergraph && npm run build:remix",
"test": "jest"
},
"dependencies": {
"@remix-run/node": "^1.11.1",
"@remix-run/react": "^1.11.1",
"@remix-run/vercel": "^1.11.1",
"@vercel/node": "^2.6.2",
"@wundergraph/sdk": "^0.184.2",
"@wundergraph/swr": "^0.19.3",
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"devDependencies": {
"@jest/globals": "^29.3.1",
"@remix-run/dev": "^1.11.1",
"@remix-run/eslint-config": "^1.11.1",
"@remix-run/serve": "^1.11.1",
"@types/node-fetch": "^2.6.2",
"@types/react": "^18.0.25",
"@types/react-dom": "^18.0.8",
"concurrently": "^6.0.0",
"eslint": "^8.27.0",
"jest": "^29.6.1",
"node-fetch": "^2.6.7",
"open-cli": "^7.0.1",
"ts-jest": "^29.1.1",
"typescript": "^4.8.4",
"wait-on": "^6.0.0"
},
"engines": {
"node": ">=14"
}
}