-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
66 lines (66 loc) · 1.91 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
{
"private": true,
"sideEffects": false,
"prisma": {
"seed": "ts-node prisma/seed.ts"
},
"scripts": {
"build": "npm run build:css && remix build",
"build:css": "tailwindcss -m -i ./styles/app.css -o app/styles/app.css",
"dev": "concurrently \"npm run dev:css\" \"remix dev\"",
"dev:css": "tailwindcss -w -o ./app/styles/app.css",
"deploy": "fly deploy --remote-only",
"start": "remix-serve build",
"typecheck": "tsc",
"compile": "graphql-codegen",
"watch": "graphql-codegen -w"
},
"dependencies": {
"@apollo/client": "^3.7.17",
"@emailjs/nodejs": "^2.2.0",
"@graphql-tools/schema": "^10.0.0",
"@headlessui/react": "^1.7.17",
"@heroicons/react": "^2.0.18",
"@portabletext/react": "^3.0.11",
"@prisma/client": "^4.16.0",
"@radix-ui/react-tabs": "^1.0.4",
"@remix-run/css-bundle": "^1.18.1",
"@remix-run/node": "^1.18.1",
"@remix-run/react": "^1.18.1",
"@remix-run/serve": "^1.18.1",
"@sanity/client": "^6.8.5",
"@sanity/image-url": "^1.0.2",
"graphql": "^16.7.1",
"isbot": "^3.6.8",
"mapbox-gl": "^2.15.0",
"moment": "^2.29.4",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-draggable": "^4.4.6",
"react-paginate": "^8.2.0",
"react-player": "^2.13.0",
"recharts": "^2.7.2"
},
"devDependencies": {
"@flydotio/dockerfile": "^0.2.15",
"@graphql-codegen/cli": "^4.0.1",
"@graphql-codegen/client-preset": "^4.0.1",
"@remix-run/dev": "^1.18.1",
"@remix-run/eslint-config": "^1.18.1",
"@types/bcryptjs": "^2.4.2",
"@types/mapbox-gl": "^2.7.18",
"@types/react": "^18.0.35",
"@types/react-dom": "^18.0.11",
"autoprefixer": "^10.4.14",
"concurrently": "^8.2.0",
"eslint": "^8.43.0",
"postcss": "^8.4.24",
"prisma": "^4.16.0",
"tailwindcss": "^3.3.2",
"ts-node": "^10.9.1",
"typescript": "^5.0.4"
},
"engines": {
"node": ">=18.0.0"
}
}