forked from modagavr/pancake-wizard
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
61 lines (61 loc) Β· 1.89 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
{
"name": "pancake-wizard",
"private": true,
"version": "1.0.0",
"type": "module",
"description": "Bot for Pancake Prediction β 26 technical indicators. Make smarter predictions with Pancake Wizard β trust math, not emotions!",
"license": "BSD-3-Clause",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"lint": "eslint src",
"tauri": "tauri",
"postinstall": "typechain --target=ethers-v5 ./src/abi/**/*.json --out-dir=src/types/contracts"
},
"dependencies": {
"@ethersproject/abi": "^5.7.0",
"@ethersproject/bytes": "^5.7.0",
"@ethersproject/providers": "^5.7.2",
"@ethersproject/units": "^5.7.0",
"@headlessui/react": "^1.7.13",
"@nanostores/persistent": "^0.7.0",
"@nanostores/react": "^0.4.1",
"@radix-ui/react-icons": "^1.2.0",
"@tauri-apps/api": "^1.2.0",
"clsx": "^1.2.1",
"dayjs": "^1.11.7",
"ethers": "^5",
"nanostores": "^0.7.4",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-hot-toast": "^2.4.0",
"remeda": "^1.9.0",
"wagmi": "^0.12.1"
},
"devDependencies": {
"@tauri-apps/cli": "^1.2.3",
"@typechain/ethers-v5": "^10.2.0",
"@types/node": "^18.15.0",
"@types/react": "^18.0.28",
"@types/react-dom": "^18.0.11",
"@typescript-eslint/eslint-plugin": "^5.54.1",
"@typescript-eslint/parser": "^5.54.1",
"@vitejs/plugin-react": "^3.1.0",
"autoprefixer": "^10.4.14",
"daisyui": "^2.51.3",
"eslint": "^8.36.0",
"eslint-config-prettier": "^8.7.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-simple-import-sort": "^10.0.0",
"eslint-plugin-tailwindcss": "^3.10.1",
"postcss": "^8.4.21",
"prettier": "^2.8.4",
"tailwindcss": "^3.2.7",
"typechain": "^8.1.1",
"typescript": "^4.9.5",
"vite": "^4.1.4"
}
}