-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 1.15 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
{
"name": "example-react-netflix",
"private": true,
"version": "1.0.0",
"description": "A netflix clone built using the Houdini Router",
"main": "index.js",
"type": "module",
"scripts": {
"web": "vite dev --host 0.0.0.0",
"api": "cross-env TZ=utc node ./src/api/server.mjs",
"dev": "concurrently \"pnpm run web\" \"pnpm run api\" \"pnpm run tw\" -n \"web,api,twd\" -c \"green,magenta,cyan\"",
"tw": "npx tailwindcss -i ./src/routes/styles.css -o ./dist/output.css --watch"
},
"dependencies": {
"@emotion/react": "^11.10.8",
"@emotion/styled": "^11.10.8",
"@fontsource/roboto": "^4.5.8",
"@graphql-tools/schema": "^9.0.19",
"@mui/lab": "5.0.0-alpha.129",
"@mui/material": "^5.12.3",
"@types/react": "^18.0.27",
"@types/react-dom": "^18.0.10",
"@vitejs/plugin-react": "^3.1.0",
"concurrently": "7.1.0",
"cross-env": "^7.0.3",
"fs-extra": "^11.1.1",
"graphql": "^16.6.0",
"graphql-yoga": "^3.9.1",
"houdini": "^1.0.0",
"houdini-react": "^1.2.0-react.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-streaming": "^0.3.10",
"typescript": "^4.9.0",
"vite": "^4.3.0"
},
"devDependencies": {
"prettier": "^2.8.8"
}
}