-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathpackage.json
More file actions
83 lines (83 loc) · 2.88 KB
/
package.json
File metadata and controls
83 lines (83 loc) · 2.88 KB
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
{
"name": "example-dex-remix",
"private": true,
"sideEffects": false,
"type": "module",
"engines": {
"node": ">=22.0.0"
},
"scripts": {
"generate:css": "unocss './app/**/*.{js,ts,jsx,tsx}' -o ./app/styles/uno.css",
"deploy": "npm run build && wrangler pages deploy ./build/client",
"build": "run-s \"build:*\"",
"build:css": "npm run generate:css",
"build:remix": "remix vite:build",
"dev": "run-p \"dev:*\"",
"dev:css": "npm run generate:css -- --watch",
"dev:remix": "remix vite:dev --manual",
"lint": "eslint --ignore-path .gitignore --cache --cache-location ./node_modules/.cache/eslint .",
"format": "prettier --write . && yarn eslint --fix .",
"start": "remix-serve ./build/server/index.js",
"preview": "npm run build && npm run start",
"typegen": "wrangler types",
"typecheck": "tsc"
},
"dependencies": {
"@orderly.network/default-evm-adapter": "2.0.7",
"@orderly.network/default-solana-adapter": "2.0.7",
"@orderly.network/hooks": "2.0.7",
"@orderly.network/perp": "4.0.6",
"@orderly.network/trading": "2.0.7",
"@orderly.network/types": "2.0.7",
"@orderly.network/web3-provider-ethers": "2.0.7",
"@radix-ui/react-icons": "^1.3.0",
"@radix-ui/themes": "^3.0.1",
"@remix-run/node": "^2.13.1",
"@remix-run/react": "^2.13.1",
"@remix-run/serve": "^2.13.1",
"@solana/wallet-adapter-base": "^0.9.23",
"@solana/wallet-adapter-base-ui": "^0.1.2",
"@solana/wallet-adapter-react": "^0.15.35",
"@solana/wallet-adapter-react-ui": "^0.9.35",
"@solana/wallet-adapter-wallets": "^0.19.32",
"@solana/web3.js": "^1.95.4",
"@web3-onboard/injected-wallets": "^2.11.2",
"@web3-onboard/react": "^2.10.0",
"@web3-onboard/walletconnect": "^2.6.1",
"deep-equal": "^2.2.3",
"ethers": "^6.11.1",
"isbot": "^5.1.2",
"lightweight-charts": "^4.1.3",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-hook-form": "^7.51.2",
"ts-pattern": "^5.1.1",
"use-resize-observer": "^9.1.0"
},
"devDependencies": {
"@remix-run/dev": "^2.13.1",
"@types/react": "^18.3.11",
"@types/react-dom": "^18.3.1",
"@typescript-eslint/eslint-plugin": "^7.4.0",
"@typescript-eslint/parser": "^7.4.0",
"@unocss/cli": "^0.58.7",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-config-typescript": "^3.0.0",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jsx-a11y": "^6.8.0",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-react": "^7.34.1",
"eslint-plugin-react-hooks": "^4.6.0",
"npm-run-all": "^4.1.5",
"prettier": "^3.2.5",
"typescript": "5.6.3",
"unocss": "^0.58.7",
"vite": "^5.4.9",
"vite-plugin-cjs-interop": "^2.1.4",
"vite-plugin-node-polyfills": "^0.22.0",
"vite-tsconfig-paths": "^5.0.1",
"wrangler": "^3.39.0"
}
}