-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.43 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
{
"private": true,
"sideEffects": false,
"scripts": {
"build": "remix build",
"codegen": "graphql-codegen --require dotenv/config --config .graphqlrc.yml --watch",
"dev": "concurrently \"remix dev\" \"npm run codegen\"",
"clean": "rm -rf .cache node_modules build public/build api/_assets && yarn"
},
"dependencies": {
"@headlessui/react": "^1.7.14",
"@remix-run/express": "^1.15.0",
"@remix-run/node": "^1.14.3",
"@remix-run/react": "^1.14.3",
"@remix-run/serve": "^1.14.3",
"@tailwindcss/forms": "^0.5.3",
"dotenv": "^16.0.3",
"framer-motion": "^10.9.2",
"graphql": "^16.6.0",
"graphql-request": "^6.0.0",
"isbot": "latest",
"jsonwebtoken": "^9.0.0",
"nprogress": "^0.2.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-hot-toast": "^2.4.1",
"remix-auth": "^3.4.0",
"remix-auth-google": "^1.2.0",
"zod": "^3.21.4",
"zodix": "^0.4.0"
},
"devDependencies": {
"@graphql-codegen/cli": "^3.3.1",
"@graphql-codegen/client-preset": "^3.0.1",
"@remix-run/dev": "^1.14.3",
"@remix-run/eslint-config": "^1.14.3",
"@types/jsonwebtoken": "^9.0.1",
"@types/nprogress": "^0.2.0",
"@types/react": "^18.0.25",
"@types/react-dom": "^18.0.11",
"concurrently": "^8.0.1",
"eslint": "^8.28.0",
"graphql-config": "^4.5.0",
"tailwindcss": "^3.3.0",
"typescript": "^4.9.3"
},
"engines": {
"node": ">=14"
}
}