-
Notifications
You must be signed in to change notification settings - Fork 620
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.52 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.52 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
{
"private": true,
"name": "@safe-global/safe-wallet",
"version": "1.0.1",
"workspaces": [
"expo-plugins/*",
"apps/*",
"config/*",
"packages/*",
"tools/codemods/*"
],
"scripts": {
"lint": "yarn workspaces foreach --all -pt run lint",
"test": "yarn workspaces foreach --all -pt run test",
"test:scripts": "yarn workspace @safe-global/web jest --config ../../scripts/jest.config.cjs",
"eslint": "yarn workspaces foreach --all -pt run eslint",
"prettier": "prettier --check . --config ./.prettierrc --ignore-path ./.prettierignore",
"prettier:fix": "prettier --write . --config ./.prettierrc --ignore-path ./.prettierignore",
"postinstall": "husky"
},
"resolutions": {
"@ledgerhq/context-module/ethers": "6.14.3",
"@gnosis.pm/zodiac/ethers": "6.14.3",
"@ledgerhq/device-signer-kit-ethereum/ethers": "6.14.3",
"@cowprotocol/events": "1.3.0",
"@ethersproject/signing-key/elliptic": "^6.6.1",
"stylus": "0.64.0",
"viem": "2.21.55",
"webpack": "5.97.1"
},
"devDependencies": {
"@storybook/builder-webpack5": "^10.2.6",
"@storybook/react": "^10.2.6",
"husky": "^9.1.6",
"lint-staged": "^16.2.7",
"msw": "^2.7.3",
"prettier": "^3.6.2",
"storybook": "^10.2.7"
},
"dependenciesMeta": {
"cypress": {
"built": true
},
"next": {
"built": true
}
},
"packageManager": "yarn@4.12.0",
"dependencies": {
"@yarnpkg/types": "^4.0.1"
},
"msw": {
"workerDirectory": [
"apps/web/public"
]
}
}