-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
41 lines (41 loc) · 1.13 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
{
"private": true,
"sideEffects": false,
"scripts": {
"build": "tailwindcss ./app/tailwind.custom.css -o ./app/tailwind.css && remix build",
"dev": "run-p dev:*",
"dev:css": "tailwindcss ./app/tailwind.custom.css -o ./app/tailwind.css --watch",
"dev:remix": "remix dev --port 5000",
"preview": "agora preview",
"typecheck": "tsc",
"codegen": "graphql-codegen"
},
"dependencies": {
"@paypal/paypal-js": "^5.1.4",
"@remix-run/node": "^1.15.0",
"@remix-run/react": "^1.15.0",
"graphql": "^16.6.0",
"isbot": "^3.6.5",
"js-cookie": "^3.0.5",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"urql": "^4.0.2"
},
"devDependencies": {
"@graphql-codegen/cli": "^4.0.0",
"@graphql-codegen/client-preset": "^4.0.0",
"@remix-run/dev": "^1.15.0",
"@remix-run/eslint-config": "^1.15.0",
"@remix-run/serve": "^1.15.0",
"@types/js-cookie": "^3.0.3",
"@types/react": "^18.0.25",
"@types/react-dom": "^18.0.8",
"eslint": "^8.27.0",
"npm-run-all": "^4.1.5",
"tailwindcss": "^3.2.7",
"typescript": "^4.9.5"
},
"engines": {
"node": ">=14"
}
}