-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
64 lines (64 loc) · 1.86 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
{
"private": true,
"sideEffects": false,
"browserslist": [
"> 1%",
"last 2 versions",
"IE 10"
],
"scripts": {
"build": "remix build",
"dev:remix": "remix watch",
"dev:wrangler": "cross-env NODE_ENV='production' npm run wrangler",
"dev": "npm-run-all build --parallel \"dev:*\"",
"start": "cross-env NODE_ENV='production' npm run wrangler",
"typecheck": "tsc",
"db:seeds": "npx wrangler d1 execute DB --file ./db/schema.sql",
"db:seeds:local": "npx wrangler d1 execute DB --file ./db/schema.sql --local",
"wrangler": "wrangler pages dev ./public --ip 0.0.0.0 --local --persist --local-protocol https"
},
"dependencies": {
"@headlessui/react": "latest",
"@remix-run/cloudflare": "1.16.1",
"@remix-run/cloudflare-pages": "1.16.1",
"@remix-run/react": "1.16.1",
"@tsndr/cloudflare-worker-jwt": "^2.2.1",
"clsx": "^1.2.1",
"cross-env": "^7.0.3",
"joi": "^17.8.3",
"model-one": "^0.0.7",
"postcss-preset-env": "^8.5.0",
"qrcode-generator": "^1.4.4",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-icons": "^4.8.0",
"stellar-base": "9.0.0-beta.3"
},
"devDependencies": {
"@albedo-link/intent": "latest",
"@cloudflare/workers-types": "^3.19.0",
"@remix-run/dev": "1.16.1",
"@remix-run/eslint-config": "1.16.1",
"@stellar/freighter-api": "latest",
"@tailwindcss/forms": "^0.5.3",
"@types/react": "^18.2.0",
"@types/react-dom": "^18.2.0",
"@walletconnect/sign-client": "latest",
"autoprefixer": "latest",
"better-sqlite3": "latest",
"daisyui": "latest",
"eslint": "^8.27.0",
"npm-run-all": "^4.1.5",
"postcss": "latest",
"react-qrcode-logo": "latest",
"tailwindcss": "latest",
"typescript": "^4.9.5",
"wrangler": "^2.2.1"
},
"engines": {
"node": ">=17.9.1"
},
"volta": {
"node": "17.9.1"
}
}