-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
61 lines (61 loc) · 1.67 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": "boring-vault-ui",
"version": "1.8.1",
"description": "A reusable package to quickly integrate boring vaults onto a UI.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": "./dist/index.js",
"./types": "./dist/types/index.d.ts"
},
"files": [
"dist/**/*"
],
"scripts": {
"build": "tsc",
"prepublish": "npm run build",
"test": "jest",
"dev": "webpack --mode production && webpack serve --mode development --open"
},
"keywords": [],
"author": "Philip Bal",
"license": "MIT",
"dependencies": {
"@chakra-ui/react": "^2.8.2",
"@emotion/react": "^11.11.4",
"@emotion/styled": "^11.11.5",
"@safe-global/safe-apps-provider": "^0.18.3",
"@safe-global/safe-apps-sdk": "^9.1.0",
"@wagmi/connectors": "^5.1.8",
"@wagmi/core": "^2.13.4",
"ethers": "^6.11.1",
"framer-motion": "^11.0.27",
"next": "^14.1.4",
"react": "^18.2.0",
"viem": "^2.21.2",
"wagmi": "^2.5.19"
},
"devDependencies": {
"@babel/core": "^7.24.4",
"@babel/preset-env": "^7.24.4",
"@babel/preset-react": "^7.24.1",
"@testing-library/jest-dom": "^6.4.2",
"@testing-library/react": "^15.0.0",
"@types/jest": "^29.5.12",
"@types/node": "^20.12.7",
"@types/react": "^18.2.75",
"@types/react-dom": "^18.2.24",
"babel-loader": "^9.1.3",
"bignumber.js": "^9.1.2",
"connectkit": "^1.7.3",
"dotenv-types": "^1.0.0",
"html-webpack-plugin": "^5.6.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"ts-jest": "^29.1.2",
"typescript": "^5.4.5",
"webpack": "^5.91.0",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^5.0.4"
}
}