-
Notifications
You must be signed in to change notification settings - Fork 823
/
package.json
112 lines (112 loc) · 3.73 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
{
"name": "flat-monorepo",
"private": true,
"scripts": {
"preinstall": "npx only-allow pnpm",
"prepare": "husky install",
"lint": "lint-staged --cwd .",
"check-spelling": "cspell --no-progress \"**/*.{md,ts,tsx,js,css,less,json,yml,yaml,html,sh}\"",
"storybook": "pnpm -F flat-components start",
"start": "node scripts/launch/index.js",
"start:cn": "cross-env FLAT_REGION=CN node scripts/launch/index.js",
"start:sg": "cross-env FLAT_REGION=SG node scripts/launch/index.js",
"start:web": "pnpm -F flat-web start",
"ship": "pnpm -F renderer-app build && pnpm -F flat ship",
"ship:mac": "pnpm -F renderer-app build && pnpm -F flat ship:mac",
"ship:win": "pnpm -F renderer-app build && pnpm -F flat ship:win",
"ship:all": "pnpm -F renderer-app build && pnpm -F flat build && pnpm -F flat pack:win && pnpm -F flat pack:mac",
"ship:cn:all": "cross-env FLAT_REGION=CN pnpm ship:all",
"ship:sg:all": "cross-env FLAT_REGION=SG pnpm ship:all",
"pub:cn": "cross-env FLAT_REGION=CN node scripts/deployment/upload-ali-oss.js",
"pub:sg": "cross-env FLAT_REGION=SG node scripts/deployment/upload-ali-oss.js"
},
"license": "MIT",
"devDependencies": {
"@commitlint/cli": "^17.1.2",
"@commitlint/config-angular": "^17.1.0",
"@hyrious/esbuild-dev": "^0.8.4",
"@netless/eslint-plugin": "^2.0.0",
"@types/fs-extra": "^9.0.13",
"@types/lodash-es": "^4.17.6",
"@types/node": "^17.0.45",
"@types/react": "^17.0.50",
"@types/react-dom": "^17.0.17",
"@types/react-router-dom": "^5.3.3",
"@types/react-virtualized": "^9.21.21",
"@types/uuid": "^8.3.4",
"@typescript-eslint/eslint-plugin": "^5.38.0",
"@typescript-eslint/parser": "^5.38.0",
"@vitejs/plugin-react": "^2.1.0",
"ali-oss": "^6.17.1",
"cross-env": "^7.0.3",
"cspell": "^6.10.0",
"dotenv-flow": "^3.2.0",
"esbuild": "^0.15.8",
"eslint": "^8.23.1",
"eslint-config-prettier": "^8.5.0",
"eslint-config-react-app": "^7.0.1",
"eslint-define-config": "^1.7.0",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-jsx-a11y": "^6.6.1",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-react": "^7.31.8",
"eslint-webpack-plugin": "^3.2.0",
"fork-ts-checker-webpack-plugin": "^7.2.13",
"husky": "^8.0.1",
"less": "^4.1.3",
"lint-staged": "^13.0.3",
"prettier": "^3.2.4",
"svglint": "^2.1.1",
"svgo": "^2.8.0",
"typescript": "^4.8.3",
"vite": "^3.2.7",
"webpack": "^5.74.0",
"yaml": "^2.1.1"
},
"pnpm": {
"//": "don't worry, we will download it in the @netless/flat-service-provider-agora-rtc-electron -> postinstall script.",
"neverBuiltDependencies": [
"agora-electron-sdk"
],
"peerDependencyRules": {
"ignoreMissing": [
"@babel/plugin-syntax-flow",
"@babel/plugin-transform-react-jsx",
"@storybook/addons",
"@storybook/api",
"@storybook/components",
"@storybook/core-events",
"@netless/window-manager",
"@netless/app-player",
"i18next-http-backend",
"rollup",
"postcss",
"autoprefixer",
"prop-types",
"react-refresh",
"react-scripts",
"webpack",
"vite",
"less",
"typescript",
"eslint",
"white-web-sdk"
],
"allowedVersions": {
"@storybook/theming": "~6.3.7",
"@typescript-eslint/eslint-plugin": "^5",
"eslint": "^8",
"react": "^17",
"react-dom": "^17",
"webpack": "^5"
}
},
"overrides": {
"@types/eslint": "^8",
"@types/react": "^17"
},
"patchedDependencies": {
"[email protected]": "patches/[email protected]"
}
}
}