-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
124 lines (124 loc) · 3.71 KB
/
package.json
File metadata and controls
124 lines (124 loc) · 3.71 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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
{
"name": "vault-interface",
"license": "MIT",
"version": "1.1.1",
"description": "Vault Interface",
"homepage": ".",
"private": true,
"scripts": {
"fast": "next dev -p 5005 --webpack",
"build": "pnpm typechain && pnpm colors && next build --webpack",
"dev": "pnpm check:env && pnpm typechain && pnpm colors && pnpm fast",
"lint": "eslint .",
"lint:css": "stylelint **/*.scss",
"lint:css:fix": "stylelint **/*.scss --fix",
"colors": "node ./scripts/generateColors",
"check:env": "node ./scripts/checkLocalEnv.js",
"typechain": "typechain --target ethers-v6 --out-dir src/helpers/contracts/types 'src/helpers/contracts/abis/*.json'",
"e2e": "playwright test",
"e2e:docker": "./scripts/fork-docker.sh",
"e2e:headed": "playwright test --ui --headed",
"e2e:dev": "concurrently --kill-others \"pnpm e2e:headed\" \"pnpm e2e:docker\" \"pnpm dev\"",
"prepare:playwright": "pnpm exec playwright install",
"prepare": "husky"
},
"engines": {
"node": "=24.12.0",
"pnpm": ">=10.25.0"
},
"sideEffects": [
"*.css",
"*.scss"
],
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@eslint/js": "9.28.0",
"@guardianui/test": "1.0.4",
"@next/eslint-plugin-next": "16.0.10",
"@playwright/test": "1.57.0",
"@typechain/ethers-v6": "0.5.1",
"@types/js-cookie": "3.0.6",
"@types/node": "22.15.21",
"@types/react": "19.2.3",
"@types/react-dom": "19.2.3",
"@types/ua-parser-js": "0.7.39",
"concurrently": "9.1.2",
"css-class-generator": "2.0.0",
"dotenv": "16.5.0",
"eslint": "9.39.1",
"eslint-config-next": "16.0.10",
"eslint-plugin-import": "2.32.0",
"eslint-plugin-react": "7.37.5",
"eslint-plugin-react-hooks": "7.0.1",
"file-loader": "6.2.0",
"sass": "1.89.0",
"sass-loader": "16.0.5",
"stylelint": "16.19.1",
"stylelint-config-rational-order": "0.1.2",
"stylelint-scss": "6.12.0",
"tailwindcss": "4.1.7",
"terser-webpack-plugin": "5.3.14",
"typechain": "8.3.2",
"typescript": "5.8.3",
"typescript-eslint": "8.50.0"
},
"dependencies": {
"@binance/w3w-ethereum-provider": "1.1.8-alpha.0",
"@cowprotocol/cow-sdk": "7.2.5",
"@cowprotocol/sdk-ethers-v6-adapter": "0.3.0",
"@floating-ui/react": "0.27.16",
"@floating-ui/react-dom": "2.1.6",
"@headlessui/react": "2.2.4",
"@ledgerhq/hw-app-eth": "6.45.5",
"@ledgerhq/hw-transport-web-ble": "6.29.12",
"@ledgerhq/hw-transport-webhid": "6.30.1",
"@ledgerhq/hw-transport-webusb": "6.29.5",
"@ledgerhq/types-live": "6.90.0",
"@metamask/onboarding": "1.0.1",
"@reduxjs/toolkit": "2.8.2",
"@safe-global/safe-apps-provider": "0.18.6",
"@safe-global/safe-apps-sdk": "9.1.0",
"@stakewise/v3-sdk": "4.2.2",
"@tailwindcss/postcss": "4.1.7",
"@types/react-redux": "7.1.34",
"@wagmi/connectors": "7.1.1",
"@wagmi/core": "3.2.1",
"async-mutex": "0.5.0",
"autoprefixer": "10.4.21",
"circular-dependency-plugin": "5.2.2",
"classnames": "2.5.1",
"dayjs": "1.11.13",
"destyle.css": "4.0.1",
"ethers": "6.14.3",
"fast-deep-equal": "3.1.3",
"focus-visible": "5.2.1",
"husky": "9.1.7",
"js-cookie": "3.0.5",
"lightweight-charts": "5.0.7",
"next": "16.0.10",
"react": "19.2.3",
"react-dom": "19.2.3",
"react-redux": "9.2.0",
"swiper": "11.2.8",
"ua-parser-js": "2.0.3",
"viem": "2.44.1",
"xlsx": "0.18.5"
},
"pnpm": {
"overrides": {
"@playwright/test": "1.57.0",
"playwright": "1.57.0"
}
}
}