-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
82 lines (82 loc) · 2.7 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
{
"name": "mantine-vite-template",
"private": true,
"version": "0.0.0",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"deploy": "gh-pages -d dist",
"preview": "vite preview",
"typecheck": "tsc --noEmit",
"lint": "npm run lint:eslint && npm run lint:stylelint",
"lint:eslint": "eslint . --ext .ts,.tsx --cache",
"lint:stylelint": "stylelint '**/*.css' --cache",
"prettier": "prettier --check \"**/*.{ts,tsx}\"",
"prettier:write": "prettier --write \"**/*.{ts,tsx}\"",
"vitest": "vitest run",
"vitest:watch": "vitest",
"test": "npm run typecheck && npm run prettier && npm run lint && npm run vitest && npm run build"
},
"dependencies": {
"@mantine/core": "7.8.1",
"@mantine/hooks": "7.8.1",
"@rhinestone/module-sdk": "^0.1.2",
"@safe-global/safe-apps-provider": "^0.18.2",
"@safe-global/safe-apps-sdk": "^9.0.0",
"@tabler/icons": "^1.79.0",
"@tabler/icons-react": "^2.44.0",
"@types/node": "^20.10.4",
"axios": "^1.4.0",
"buffer": "^6.0.3",
"dayjs": "^1.11.10",
"empty-module": "^0.0.2",
"ethers": "6.7.1",
"ethersv5": "npm:ethers@^5",
"gh-pages": "^6.1.0",
"permissionless": "0.1.34",
"process": "^0.11.10",
"react": "^18.2.0",
"react-copy-to-clipboard": "^5.1.0",
"react-dom": "^18.2.0",
"react-router-dom": "^6.18.0",
"styled-components": "^6.1.1",
"viem": "^2.9.25",
"zustand": "^4.4.7"
},
"devDependencies": {
"@testing-library/dom": "^9.3.3",
"@testing-library/jest-dom": "^6.1.5",
"@testing-library/react": "^14.0.0",
"@testing-library/user-event": "^14.5.1",
"@types/react": "^18.2.36",
"@types/react-copy-to-clipboard": "^5.0.7",
"@types/react-dom": "^18.2.14",
"@typescript-eslint/eslint-plugin": "^6.9.1",
"@typescript-eslint/parser": "^6.9.1",
"@vitejs/plugin-react": "^4.1.1",
"eslint": "^8.53.0",
"eslint-config-airbnb": "19.0.4",
"eslint-config-airbnb-typescript": "^17.1.0",
"eslint-config-mantine": "3.0.0",
"eslint-plugin-import": "^2.29.0",
"eslint-plugin-jsx-a11y": "^6.7.0",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"identity-obj-proxy": "^3.0.0",
"jsdom": "^22.1.0",
"postcss": "^8.4.31",
"postcss-preset-mantine": "1.11.0",
"postcss-simple-vars": "^7.0.1",
"prettier": "^3.0.3",
"prop-types": "^15.8.1",
"stylelint": "^15.11.0",
"stylelint-config-standard-scss": "^11.1.0",
"typescript": "^5.3.3",
"vite": "^4.5.0",
"vite-plugin-cross-origin-isolation": "^0.1.6",
"vite-plugin-node-polyfills": "^0.16.0",
"vite-tsconfig-paths": "^4.2.1",
"vitest": "^0.34.6"
},
"packageManager": "yarn@4.0.1"
}