forked from DimensionDev/Maskbook
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
114 lines (114 loc) · 3.56 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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
{
"name": "mask-network",
"packageManager": "pnpm@7.1.1",
"engines": {
"node": ">=17.0.0",
"pnpm": ">=7.0.0",
"yarn": ">=999.0.0",
"npm": ">=999.0.0"
},
"version": "2.8.0",
"private": true,
"license": "AGPL-3.0-or-later",
"scripts": {
"start": "dev",
"start:mv3": "dev --mv3",
"start:fx": "dev --preset firefox",
"codegen": "gulp codegen-watch",
"build": "build",
"build-ios": "build --preset iOS",
"lint": "eslint -c packages/.eslintrc.json packages --ext .ts,.tsx,.js --cache --fix",
"lint:ci": "eslint -c packages/.eslintrc.json packages --ext .ts,.tsx,.js --cache",
"lint:ci-report": "pnpm run lint:ci --format=junit --output-file=reports/junit/eslint-results.xml --max-warnings=0",
"postinstall": "patch-package && gulp fix-lockfile",
"prepare": "husky install",
"test": "node --experimental-vm-modules ./node_modules/jest/bin/jest.js",
"test:debug": "node --experimental-vm-modules ./node_modules/jest/bin/jest.js --runInBand",
"test:update": "node --experimental-vm-modules ./node_modules/jest/bin/jest.js -u",
"spellcheck": "cspell lint --no-must-find-files"
},
"dependencies": {
"@dimensiondev/kit": "0.0.0-20220501022859-60d5533",
"@emotion/cache": "^11.7.1",
"@emotion/react": "^11.9.0",
"@emotion/serialize": "^1.0.3",
"@emotion/styled": "^11.8.1",
"@emotion/utils": "^1.1.0",
"@mui/icons-material": "5.8.0",
"@mui/lab": "5.0.0-alpha.82",
"@mui/material": "5.8.0",
"@mui/system": "5.8.0",
"@solana/web3.js": "1.39.1",
"@types/masknet__global-types": "workspace:*",
"@types/react": "18.0.8",
"@types/react-dom": "^18.0.4",
"@types/web": "^0.0.66",
"i18next": "^21.8.2",
"immer": "9.0.12",
"lodash": "^4.17.21",
"lodash-es": "^4.17.21",
"lodash-unified": "1.0.2",
"react": "18.1.0",
"react-dom": "18.1.0",
"react-i18next": "^11.16.9",
"ses": "0.15.15",
"ts-results": "3.3.0",
"web3-core": "1.7.3",
"web3-core-method": "1.7.3"
},
"devDependencies": {
"@commitlint/cli": "^17.0.0",
"@commitlint/config-conventional": "^17.0.0",
"@dimensiondev/eslint-plugin": "0.0.2-20220516081411-2649814",
"@dimensiondev/patch-package": "^6.5.0",
"@jest/globals": "^28.1.0",
"@magic-works/i18n-codegen": "^0.2.0",
"@masknet/cli": "workspace:*",
"@masknet/serializer": "workspace:*",
"@nice-labs/git-rev": "^3.5.0",
"@swc/core": "^1.2.177",
"@types/lodash-es": "^4.17.6",
"@typescript-eslint/eslint-plugin": "^5.25.0",
"@typescript-eslint/experimental-utils": "^5.25.0",
"@typescript-eslint/parser": "^5.25.0",
"cspell": "^5.21.0",
"eslint": "8.15.0",
"eslint-plugin-import": "2.26.0",
"eslint-plugin-react": "^7.29.4",
"eslint-plugin-react-hooks": "^4.5.0",
"eslint-plugin-unicorn": "^42.0.0",
"eslint-plugin-unused-imports": "^2.0.0",
"gulp": "^4.0.2",
"husky": "^8.0.1",
"jest": "^28.1.0",
"lint-staged": "^12.4.1",
"prettier": "^2.6.2",
"ts-jest": "^28.0.2",
"ts-node": "^10.7.0",
"typescript": "4.7.0-beta"
},
"pnpm": {
"overrides": {
"@types/node": "^17.0.34",
"@types/react": "18.0.9",
"@solana/web3.js": "1.39.1"
},
"onlyBuiltDependencies": [],
"peerDependencyRules": {
"ignoreMissing": [
"react",
"react-dom",
"@types/node",
"@babel/core",
"webextension-polyfill",
"prop-types",
"@mui/material",
"typescript"
],
"allowedVersions": {
"react": "18",
"react-dom": "18"
}
}
}
}