-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
67 lines (67 loc) · 1.99 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
{
"private": true,
"sideEffects": false,
"type": "module",
"scripts": {
"build": "remix vite:build",
"dev": "remix vite:dev",
"start": "PORT=5500 remix-serve ./build/server/index.js",
"typecheck": "tsc",
"graphql": "graphql-codegen --config graphql.codegen.ts",
"lint": "eslint --quiet --ignore-path .gitignore --cache --cache-location ./node_modules/.cache/eslint .",
"test": "vitest",
"pr": "sh scripts/pr.sh"
},
"dependencies": {
"@apollo/client": "^3.9.11",
"@emotion/react": "^11.11.4",
"@emotion/server": "^11.11.0",
"@emotion/styled": "^11.11.0",
"@graphql-codegen/typescript-react-apollo": "^4.3.0",
"@heroicons/react": "^2.1.3",
"@material-tailwind/react": "^2.1.9",
"@mui/material": "^5.15.15",
"@remix-run/css-bundle": "2.8.1",
"@remix-run/node": "2.9.1",
"@remix-run/react": "2.9.1",
"@remix-run/serve": "2.9.1",
"cookie": "^0.6.0",
"date-fns": "^3.3.1",
"dotenv": "^16.4.5",
"graphql": "^16.8.1",
"graphql-config": "^5.0.3",
"graphql-tag": "^2.12.6",
"isbot": "^5.1.4",
"react": "^18.2.0",
"react-day-picker": "^8.10.1",
"react-dom": "^18.2.0",
"remix-auth": "^3.6.0",
"remix-auth-google": "^2.0.0",
"vite-plugin-cjs-interop": "^2.1.0"
},
"devDependencies": {
"@graphql-codegen/cli": "5.0.2",
"@graphql-codegen/client-preset": "4.2.5",
"@graphql-eslint/eslint-plugin": "^3.20.1",
"@remix-run/dev": "2.9.1",
"@remix-run/eslint-config": "2.9.1",
"@remix-run/testing": "^2.9.1",
"@testing-library/react": "^15.0.5",
"@types/react": "18.2.42",
"@types/react-dom": "^18.2.19",
"autoprefixer": "^10.4.19",
"eslint": "^8.57.0",
"jsdom": "^24.0.0",
"postcss": "^8.4.38",
"prettier": "^3.2.5",
"prettier-plugin-tailwindcss": "^0.5.14",
"tailwindcss": "^3.4.3",
"typescript": "^5.3.3",
"vite": "^5.2.10",
"vite-tsconfig-paths": "^4.3.2",
"vitest": "^1.5.2"
},
"engines": {
"node": ">=20.5.1"
}
}