forked from OrderlyNetworkDexCreator/dex-creator-template
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
90 lines (90 loc) · 3.1 KB
/
package.json
File metadata and controls
90 lines (90 loc) · 3.1 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
84
85
86
87
88
89
90
{
"name": "dex-creator-template",
"description": "Template for Orderly SDK",
"private": true,
"sideEffects": false,
"type": "module",
"engines": {
"node": ">=20.0.0"
},
"scripts": {
"build": "tsx scripts/generate-manifest.ts && NODE_OPTIONS='--max-old-space-size=8192' vite build && tsx scripts/generate-manifest.ts",
"build:spa": "tsx scripts/generate-manifest.ts && NODE_OPTIONS='--max-old-space-size=8192' tsx build.ts && tsx scripts/generate-manifest.ts",
"copyLocales": "node scripts/copyLocales.mjs",
"dev": "tsx scripts/generate-manifest.ts && vite",
"generate:manifest": "tsx scripts/generate-manifest.ts",
"lint": "eslint --cache --cache-location ./node_modules/.cache/eslint .",
"prepare": "husky",
"preview": "vite preview",
"typecheck": "tsc"
},
"dependencies": {
"@orderly.network/affiliate": "2.12.1",
"@orderly.network/i18n": "2.12.1",
"@orderly.network/markets": "2.12.1",
"@orderly.network/portfolio": "2.12.1",
"@orderly.network/react-app": "2.12.1",
"@orderly.network/trading": "2.12.1",
"@orderly.network/trading-leaderboard": "2.12.1",
"@orderly.network/trading-points": "1.4.1",
"@orderly.network/types": "2.12.1",
"@orderly.network/ui": "2.12.1",
"@orderly.network/ui-scaffold": "2.12.1",
"@orderly.network/vaults": "2.12.1",
"@orderly.network/wallet-connector": "2.12.1",
"@orderly.network/wallet-connector-privy": "2.12.1",
"@privy-io/cross-app-connect": "^0.2.1",
"@solana-mobile/wallet-adapter-mobile": "^2.2.0",
"@solana/wallet-adapter-base": "^0.9.24",
"@solana/wallet-adapter-wallets": "^0.19.36",
"@tanstack/query-core": "^5.79.0",
"@web3-onboard/walletconnect": "^2.6.2",
"ip-range-check": "^0.2.0",
"isbot": "^4.1.0",
"lucide-react": "^0.544.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-helmet-async": "^2.0.5",
"react-router-dom": "^7.1.3",
"stream-browserify": "^3.0.0",
"wagmi": "^2.15.4",
"woofi-swap-widget-kit": "^0.0.38"
},
"devDependencies": {
"@trivago/prettier-plugin-sort-imports": "^5.2.2",
"@types/node": "^20.11.30",
"@types/react": "^18.2.20",
"@types/react-dom": "^18.2.7",
"@typescript-eslint/eslint-plugin": "^6.7.4",
"@typescript-eslint/parser": "^6.7.4",
"@vitejs/plugin-react": "^4.3.4",
"autoprefixer": "^10.4.19",
"eslint": "^8.38.0",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-import": "^2.28.1",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"fs-extra": "^11.3.0",
"husky": "^9.1.7",
"lint-staged": "^16.1.2",
"postcss": "^8.5.1",
"prettier": "^3.6.2",
"tailwindcss": "^3.4.4",
"tsx": "^4.19.4",
"typescript": "5.8.3",
"vite": "^7.1.9",
"vite-plugin-cjs-interop": "^2.3.0",
"vite-plugin-node-polyfills": "0.24.0",
"vite-tsconfig-paths": "^5.1.4"
},
"lint-staged": {
"*.{ts,tsx}": [
"prettier --write"
]
},
"resolutions": {
"**/*/@amplitude/analytics-browser": "2.11.13",
"**/*/@reown/appkit": "1.7.8"
}
}