-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
94 lines (94 loc) · 3.18 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
{
"name": "@zodiac/pilot-extension",
"version": "0.0.0",
"description": "Chrome extension to simulate dApp interactions and record transactions",
"type": "module",
"main": "index.js",
"repository": "https://github.com/gnosisguild/zodiac-pilot.git",
"author": "Jan-Felix <[email protected]>",
"license": "GPLv3",
"private": true,
"sideEffects": false,
"scripts": {
"clean": "rimraf public/build",
"update-manifest": "node --experimental-strip-types manifest-util.ts -t ./src/manifest.template.json -o ./public/manifest.json",
"prebuild": "pnpm clean && pnpm update-manifest",
"build": "node esbuild.mjs",
"zip": "mv public zodiac-pilot && zip -vr zodiac-pilot.zip zodiac-pilot/ -x \"*.DS_Store\" && mv zodiac-pilot public",
"predev": "pnpm clean",
"dev": "NODE_ENV=development pnpm build",
"test": "vitest",
"test:e2e": "PW_CHROMIUM_ATTACH_TO_OTHER=1 playwright test --headed",
"test:e2e:ui": "pnpm test:e2e --ui",
"check-types": "tsc --noEmit",
"check-cycles": "madge -c --warning --ts-config tsconfig.json ./src/panel/app.tsx ./src/background/index.ts",
"lint": "eslint . --max-warnings=0",
"fix": "pnpm fix:lint",
"fix:lint": "pnpm check:lint --fix"
},
"devDependencies": {
"@depay/web3-mock": "14.19.1",
"@playwright/test": "1.50.1",
"@safe-global/safe-gateway-typescript-sdk": "3.22.9",
"@sentry/esbuild-plugin": "3.1.2",
"@tailwindcss/postcss": "4.0.6",
"@testing-library/dom": "10.4.0",
"@testing-library/jest-dom": "6.6.3",
"@testing-library/react": "16.2.0",
"@testing-library/user-event": "14.6.1",
"@types/chrome": "0.0.304",
"@types/events": "3.0.3",
"@types/node": "22.13.1",
"@types/react": "19.0.8",
"@types/react-dom": "19.0.3",
"@vitest/coverage-v8": "3.0.5",
"@zodiac/eslint-config": "workspace:*",
"@zodiac/test-utils": "workspace:*",
"@zodiac/typescript-config": "workspace:*",
"autoprefixer": "10.4.20",
"chalk": "5.4.1",
"dotenv": "16.4.7",
"esbuild": "0.25.0",
"esbuild-style-plugin": "1.6.3",
"eslint": "9.20.0",
"ethers": "6.13.5",
"events": "3.3.0",
"globals": "15.14.0",
"happy-dom": "17.0.4",
"jsdom-testing-mocks": "1.13.1",
"madge": "8.0.0",
"postcss": "8.5.2",
"postcss-replace": "2.0.1",
"rimraf": "6.0.1",
"tailwindcss": "4.0.6",
"typescript": "5.7.3",
"vitest": "3.0.5",
"vitest-chrome": "0.1.0"
},
"packageManager": "[email protected]",
"dependencies": {
"@epic-web/invariant": "1.0.0",
"@gnosis.pm/zodiac": "4.0.3",
"@headlessui/react": "2.2.0",
"@sentry/browser": "8.54.0",
"@zodiac/chains": "workspace:*",
"@zodiac/env": "workspace:*",
"@zodiac/form-data": "workspace:*",
"@zodiac/messages": "workspace:*",
"@zodiac/modules": "workspace:*",
"@zodiac/safe": "workspace:*",
"@zodiac/schema": "workspace:*",
"@zodiac/ui": "workspace:*",
"classnames": "2.5.1",
"date-fns": "4.1.0",
"lucide-react": "0.475.0",
"nanoid": "5.0.9",
"node-stdlib-browser": "1.3.1",
"react": "19.0.0",
"react-dom": "19.0.0",
"react-router": "7.1.5",
"react-stick": "5.0.6",
"ser-kit": "2.0.1",
"zod": "3.24.1"
}
}