forked from DimensionDev/Maskbook
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
94 lines (94 loc) · 2.95 KB
/
package.json
File metadata and controls
94 lines (94 loc) · 2.95 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
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": "mask-network",
"packageManager": "pnpm@6.23.1",
"version": "2.3.0",
"private": true,
"license": "AGPL-3.0-or-later",
"scripts": {
"start": "dev",
"start:mv3": "dev --mv3",
"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",
"preinstall": "npx only-allow pnpm",
"postinstall": "patch-package",
"prepare": "husky install",
"test": "node --experimental-vm-modules ./node_modules/jest/bin/jest.js",
"spellcheck": "cspell lint --no-must-find-files"
},
"lint-staged": {
"*": "prettier --write --ignore-unknown",
"packages/**/*.{ts,tsx,js,jsx}": "eslint -c packages/.eslintrc.json --fix",
"packages/mask/**/*": "node ./packages/scripts/src/bin/precommit-hook-localekit.js"
},
"dependencies": {
"@dimensiondev/kit": "0.0.0-20211118134922-42648c0",
"@emotion/cache": "^11.6.0",
"@emotion/react": "^11.6.0",
"@emotion/serialize": "^1.0.2",
"@emotion/styled": "^11.6.0",
"@emotion/utils": "^1.0.0",
"@mui/icons-material": "5.2.0",
"@mui/lab": "5.0.0-alpha.57",
"@mui/material": "5.2.1",
"@mui/system": "5.2.1",
"@types/masknet__global-types": "workspace:*",
"@types/react": "^17.0.37",
"@types/react-dom": "^17.0.11",
"@types/web": "^0.0.47",
"i18next": "^21.5.3",
"idb": "5.0.8",
"lodash": "^4.17.21",
"lodash-es": "^4.17.21",
"lodash-unified": "1.0.1",
"react": "18.0.0-rc.0",
"react-dom": "18.0.0-rc.0",
"react-i18next": "^11.14.3",
"ts-results": "3.3.0",
"web3-core": "1.5.2",
"web3-core-method": "1.5.2"
},
"devDependencies": {
"@commitlint/cli": "^15.0.0",
"@commitlint/config-conventional": "^15.0.0",
"@dimensiondev/patch-package": "^6.5.0",
"@jest/globals": "^27.3.1",
"@magic-works/i18n-codegen": "^0.0.6",
"@masknet/cli": "workspace:*",
"@masknet/serializer": "workspace:^0.0.0",
"@nice-labs/git-rev": "^3.5.0",
"@types/lodash-es": "^4.17.5",
"cspell": "^5.12.5",
"eslint": "8.3.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "2.25.3",
"eslint-plugin-lodash": "^7.3.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.27.1",
"eslint-plugin-react-hooks": "^4.3.0",
"eslint-plugin-unicorn": "^39.0.0",
"eslint-plugin-unused-imports": "^2.0.0",
"gulp": "^4.0.2",
"husky": "^7.0.4",
"jest": "^27.3.1",
"lint-staged": "^12.1.2",
"only-allow": "^1.0.0",
"prettier": "^2.5.0",
"ts-jest": "^27.0.7",
"ts-node": "^10.4.0",
"typescript": "4.6.0-dev.20211202",
"webpack": "5.65.0"
},
"engines": {
"node": ">=16.0.0",
"pnpm": ">=6"
},
"pnpm": {
"overrides": {
"xhr2-cookies": "link:./package-overrides/xhr2-cookies",
"@types/node": "^16.11.6"
}
}
}