-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
87 lines (87 loc) · 2.65 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
{
"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 -i ./styles/app.css -o app/styles/app.css",
"deploy": "fly deploy --remote-only",
"start": "remix-serve build",
"setup": "prisma generate && prisma migrate deploy && prisma db seed",
"compile": "graphql-codegen",
"watch": "graphql-codegen -w"
},
"dependencies": {
"@apollo/client": "^3.9.4",
"@avnu/avnu-sdk": "^1.2.4",
"@graphql-tools/schema": "^10.0.2",
"@headlessui/react": "^1.7.10",
"@heroicons/react": "^2.0.15",
"@portabletext/react": "^2.0.1",
"@prisma/client": "^4.10.1",
"@radix-ui/react-tooltip": "^1.0.7",
"@remix-run/node": "^1.19.3",
"@remix-run/react": "^1.19.3",
"@remix-run/serve": "^1.19.3",
"@remix-run/v1-route-convention": "^0.1.4",
"@sanity/client": "^3.4.1",
"@sanity/image-url": "1.0.1",
"@starknet-react/chains": "^0.1.7",
"@starknet-react/core": "^2.9.0",
"@stripe/react-stripe-js": "^2.8.0",
"@stripe/stripe-js": "^3.5.0",
"@svgdotjs/svg.js": "^3.2.0",
"airtable": "^0.11.6",
"bn.js": "^5.2.1",
"get-starknet-core": "^3.2.0",
"graphql": "^16.8.1",
"lodash": "^4.17.21",
"mapbox-gl": "^2.15.0",
"moment": "^2.29.4",
"react": "^18.2.0",
"react-burger-menu": "^3.0.9",
"react-dom": "^18.2.0",
"react-draggable": "^4.4.6",
"react-paginate": "^8.2.0",
"react-slick": "^0.29.0",
"react-toastify": "^9.1.3",
"starknet": "^5.29.0",
"starknetid.js": "3.2.0",
"starknetkit": "1.1.4",
"stripe": "^15.12.0",
"tailwindcss-radix": "^2.7.0",
"ts-node": "^10.9.1"
},
"devDependencies": {
"@graphql-codegen/cli": "^4.0.1",
"@graphql-codegen/client-preset": "^4.2.2",
"@remix-run/dev": "^1.19.3",
"@remix-run/eslint-config": "^1.19.3",
"@types/bn.js": "^5.1.1",
"@types/lodash": "^4.14.191",
"@types/mapbox-gl": "^2.7.21",
"@types/node": "^18.13.0",
"@types/react": "^18.0.27",
"@types/react-burger-menu": "^2.8.3",
"@types/react-dom": "^18.0.10",
"@types/react-slick": "^0.23.10",
"autoprefixer": "^10.4.13",
"concurrently": "^7.6.0",
"esbuild-register": "^3.4.2",
"eslint": "^8.33.0",
"happy-dom": "^7.8.1",
"postcss": "^8.4.21",
"prisma": "^4.10.1",
"react-is": "^17.0.2",
"tailwindcss": "^3.2.6",
"ts-node": "^10.9.1",
"typescript": "^4.9.5"
},
"engines": {
"node": ">=18"
}
}