forked from DimensionDev/Maskbook
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
80 lines (80 loc) · 2.68 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
{
"name": "maskbook",
"version": "1.22.3",
"private": true,
"license": "AGPL-3.0-or-later",
"scripts": {
"start": "dev",
"start-e2e": "env target=E2E dev",
"ts": "dev --daemon",
"go": "dev --help",
"build": "build",
"build-e2e": "env target=E2E build",
"build-ios": "run-s build:ios:webpack build:ios:ext:prebuilt",
"build:ios:ext:prebuilt": "webextensiom-shim-prebuilt",
"build:ios:webpack": "build 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",
"test": "jest --verbose --watch",
"test:ci": "jest --verbose --ci --collectCoverage=true --reporters=default --reporters=jest-junit -w 1 --forceExit",
"test:e2e": "jest --verbose --runInBand --config=jest-e2e.config.js",
"preinstall": "npx only-allow pnpm",
"prepare": "husky install"
},
"lint-staged": {
"*": "prettier --write --ignore-unknown",
"packages/**/*.{ts,tsx,js,jsx}": "eslint -c packages/.eslintrc.json --fix",
"packages/maskbook/**/*": "locale-kit --sync-keys --remove-unused-keys"
},
"dependencies": {
"@emotion/cache": "^11",
"@emotion/react": "^11.1.2",
"@emotion/styled": "^11",
"@material-ui/core": "5.0.0-alpha.24",
"@material-ui/icons": "5.0.0-alpha.24",
"@material-ui/lab": "5.0.0-alpha.24",
"@material-ui/system": "5.0.0-alpha.24",
"@types/react": "^17.0.2",
"@types/react-dom": "^17.0.1",
"i18next": "^20.1.0",
"jss": "10.5.1",
"react": "=0.0.0-experimental-553440bd1",
"react-dom": "=0.0.0-experimental-553440bd1",
"react-i18next": "^11.8.7"
},
"devDependencies": {
"@commitlint/cli": "^12.1.1",
"@commitlint/config-conventional": "^12.1.1",
"@dimensiondev/cli": "workspace:*",
"@magic-works/commonjs-import.meta": "^1.0.0",
"@magic-works/i18n-codegen": "^0.0.5",
"@material-ui/codemod": "^5.0.0-alpha.24",
"@nice-labs/git-rev": "^3.5.0",
"eslint": "^7.15.0",
"eslint-config-prettier": "^8.1.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-lodash": "^7.1.0",
"eslint-plugin-prettier": "^3.3.0",
"eslint-plugin-react-hooks": "^4.2.0",
"eslint-plugin-unused-imports": "^1.0.0",
"esm": "^3.2.25",
"husky": "^6.0.0",
"lint-staged": "^10.5.3",
"npm-run-all": "^4.1.5",
"only-allow": "^1.0.0",
"prettier": "^2.1.2",
"ts-node": "^9.1.1",
"ttypescript": "^1.5.12",
"typescript": "4.1.3"
},
"engines": {
"node": ">=14.4.0",
"pnpm": ">=6"
},
"pnpm": {
"overrides": {
"react": "=0.0.0-experimental-dc27b5aaa",
"react-dom": "=0.0.0-experimental-dc27b5aaa"
}
}
}