forked from alchemix-finance/alchemix-v2-frontend
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
102 lines (102 loc) · 3.48 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
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
91
92
93
94
95
96
97
98
99
100
101
102
{
"name": "alchemix-v2-ui",
"version": "1.0.0",
"license": "ISC",
"scripts": {
"abi": "bash ./scripts/mainnetAbi.sh",
"makeEnv": "bash ./scripts/makeEnv.sh",
"build": "cross-env NODE_ENV=production NODE_OPTIONS=--max-old-space-size=8192 vite build",
"build:gha": "cross-env NODE_OPTIONS=--max-old-space-size=8192 NODE_ENV=ipfs vite build",
"vercel_debug_build": "echo $DEBUG_MODE; yarn makeEnv && yarn build",
"dev:noabi": "node -v && yarn format && cross-env NODE_ENV=development NODE_OPTIONS=--max-old-space-size=8192 vite --port 5005",
"dev": "node -v && yarn abi && yarn format && cross-env NODE_ENV=development NODE_OPTIONS=--max-old-space-size=8192 vite --port 5005",
"format": "yarn run prettier && yarn run lint",
"lint": "yarn run eslint ./src/ --ext .js,.ts,.svelte",
"prettier": "npx prettier --write src/**/*.{js,svelte,ts,html} --write public/*.html --no-error-on-unmatched-pattern"
},
"pre-push": {
"run": "lint",
"silent": false
},
"devDependencies": {
"@babel/core": "^7.18.10",
"@babel/helper-compilation-targets": "^7.18.9",
"@sveltejs/vite-plugin-svelte": "^2.5.2",
"@tsconfig/svelte": "^5.0.2",
"@types/node": "^20.9.0",
"@typescript-eslint/eslint-plugin": "^6.11.0",
"@typescript-eslint/parser": "^6.11.0",
"eslint": "^8.53.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-airbnb-typescript": "^17.1.0",
"eslint-plugin-import": "^2.22.1",
"graphql-request": "^6.1.0",
"path": "^0.12.7",
"postcss": "^8.2.10",
"postcss-load-config": "^4.0.1",
"pre-push": "^0.1.3",
"prettier": "^3.1.0",
"prettier-plugin-svelte": "^3.1.0",
"require-json5": "^1.1.0",
"rollup": "^4.4.1",
"rollup-plugin-polyfill-node": "^0.12.0",
"svelte": "^4.2.3",
"svelte-check": "^3.6.0",
"svelte-check-plugin": "^1.0.3",
"svelte-loader": "^3.1.2",
"svelte-loading-spinners": "^0.3.4",
"svelte-preprocess": "^5.1.0",
"ts-node": "^10.4.0",
"tslib": "^2.3.1",
"typescript": "5.2.2",
"vite": "4.5.1"
},
"dependencies": {
"@connext/sdk-core": "2.1.2",
"@lottiefiles/lottie-player": "^2.0.2",
"@snapshot-labs/snapshot.js": "^0.8.3",
"@tkh/tailwind-plugin-flex-basis": "^1.4.0",
"@web3-onboard/coinbase": "^2.2.5",
"@web3-onboard/core": "^2.21.2",
"@web3-onboard/injected-wallets": "^2.10.10",
"@web3-onboard/keystone": "^2.3.7",
"@web3-onboard/taho": "^2.0.5",
"@web3-onboard/trezor": "^2.4.2",
"@web3-onboard/walletconnect": "^2.5.2",
"@web3-onboard/walletlink": "^2.1.7",
"assert": "^2.0.0",
"autoprefixer": "^10.2.5",
"axios": "^1.6.2",
"buffer": "^6.0.3",
"chart.js": "^4.4.0",
"classnames": "^2.3.1",
"core-js": "^3.15.2",
"cross-env": "^7.0.3",
"crypto-browserify": "^3.12.0",
"dotenv": "^16.3.1",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-prettier": "^5.0.1",
"eslint-plugin-svelte": "^2.35.1",
"ethers": "^5.7.2",
"graphql": "^16.6.0",
"https-browserify": "^1.0.0",
"immer": "^10.0.3",
"jdenticon": "^3.1.0",
"numeral": "^2.0.6",
"os-browserify": "^0.3.0",
"postcss": "^8.2.10",
"regenerator-runtime": "^0.14.0",
"rollup-plugin-node-resolve": "^5.2.0",
"stream-browserify": "^3.0.0",
"stream-http": "^3.2.0",
"svelte-i18n": "^4.0.0",
"svelte-routing": "2.10.0",
"tailwindcss": "^3.3.5",
"url": "^0.11.0",
"util": "^0.12.4",
"uuid": "^9.0.1"
},
"browserslist": [
"defaults"
]
}