forked from netless-io/flat
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
102 lines (102 loc) · 3.31 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
{
"name": "flat-monorepo",
"private": true,
"scripts": {
"preinstall": "npx only-allow pnpm",
"postinstall": "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:us": "cross-env FLAT_REGION=US 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 ship:win && pnpm -F flat pack:mac",
"ship:cn:all": "cross-env FLAT_REGION=CN pnpm ship:all",
"ship:us:all": "cross-env FLAT_REGION=US pnpm ship:all"
},
"license": "MIT",
"devDependencies": {
"@commitlint/cli": "^17.0.0",
"@commitlint/config-angular": "^17.0.0",
"@hyrious/esbuild-dev": "^0.7.4",
"@netless/eslint-plugin": "^2.0.0",
"@netless/white-snapshot": "^0.3.1",
"@types/fs-extra": "^9.0.13",
"@types/lodash-es": "^4.17.6",
"@types/node": "^17.0.21",
"@types/react": "^17.0.40",
"@types/react-dom": "^17.0.13",
"@types/react-router-dom": "^5.3.3",
"@types/react-virtualized": "^9.21.20",
"@types/uuid": "^8.3.4",
"@typescript-eslint/eslint-plugin": "^5.15.0",
"@typescript-eslint/parser": "^5.15.0",
"@vitejs/plugin-react": "^1.2.0",
"ali-oss": "^6.17.1",
"cross-env": "^7.0.3",
"cspell": "^5.19.2",
"dotenv-flow": "^3.2.0",
"esbuild": "^0.14.27",
"eslint": "^8.11.0",
"eslint-config-prettier": "^8.5.0",
"eslint-config-react-app": "^7.0.0",
"eslint-define-config": "^1.3.0",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.29.4",
"eslint-webpack-plugin": "^3.1.1",
"fork-ts-checker-webpack-plugin": "^7.2.1",
"husky": "^7.0.4",
"less": "^4.1.2",
"lint-staged": "^12.3.5",
"prettier": "^2.6.1",
"svgo": "^2.8.0",
"typescript": "^4.6.2",
"vite": "^2.9.9",
"webpack": "^5.70.0",
"yaml": "^1.10.2"
},
"pnpm": {
"//": "don't worry, we will download it in the @netless/flat-rtc-agora-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",
"i18next-http-backend",
"rollup",
"prop-types",
"react-refresh",
"react-scripts",
"webpack",
"vite",
"less",
"typescript",
"eslint"
],
"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"
}
}
}