forked from stakewise/vault-interface
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
89 lines (89 loc) · 2.41 KB
/
package.json
File metadata and controls
89 lines (89 loc) · 2.41 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
{
"name": "vault-interface",
"version": "1.0.1",
"description": "Vault Interface",
"homepage": ".",
"private": true,
"scripts": {
"fast": "next dev -p 5005",
"build": "npm run typechain && next build",
"dev": "npm run check:env && npm run typechain && npm run fast",
"lint": "next lint",
"lint:css": "stylelint **/*.scss",
"lint:css:fix": "stylelint **/*.scss --fix",
"check:env": "node ./scripts/checkLocalEnv.js",
"typechain": "typechain --target ethers-v6 --out-dir src/helpers/contracts/types 'src/helpers/contracts/abis/*.json'"
},
"engines": {
"node": "=20.12.2",
"npm": "=10.5.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"
]
},
"license": "MIT",
"devDependencies": {
"@typechain/ethers-v6": "0.5.1",
"@types/js-cookie": "3.0.6",
"@types/react": "18.3.3",
"@types/react-dom": "18.3.0",
"@types/ua-parser-js": "0.7.39",
"css-class-generator": "2.0.0",
"eslint": "8.57.0",
"eslint-config-next": "14.2.5",
"eslint-plugin-import": "2.29.1",
"file-loader": "6.2.0",
"postcss": "8.4.41",
"sass": "1.77.8",
"sass-loader": "16.0.0",
"stylelint": "16.8.1",
"stylelint-config-rational-order": "0.1.2",
"stylelint-scss": "6.5.0",
"tailwindcss": "3.4.10",
"terser-webpack-plugin": "5.3.11",
"typechain": "8.3.2",
"typescript": "5.5.4"
},
"dependencies": {
"@headlessui/react": "2.1.2",
"@ledgerhq/hw-app-eth": "6.38.0",
"@ledgerhq/hw-transport-webhid": "6.29.2",
"@ledgerhq/hw-transport-webusb": "6.29.2",
"@metamask/onboarding": "1.0.1",
"@reduxjs/toolkit": "2.2.7",
"@stakewise/v3-sdk": "3.5.0",
"@types/react-redux": "7.1.33",
"@wagmi/connectors": "5.1.10",
"autoprefixer": "10.4.20",
"async-mutex": "0.5.0",
"circular-dependency-plugin": "5.2.2",
"classnames": "2.5.1",
"dayjs": "1.11.12",
"destyle.css": "4.0.1",
"ethers": "6.13.2",
"focus-visible": "5.2.1",
"js-cookie": "3.0.5",
"lightweight-charts": "4.2.0",
"next": "14.2.5",
"react": "18.3.1",
"react-dom": "18.3.1",
"react-redux": "9.1.2",
"swiper": "11.1.15",
"ua-parser-js": "1.0.38",
"xlsx": "0.18.5",
"viem": "2.25.0"
}
}