-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 1.42 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
{
"name": "kbant",
"version": "1.0.0",
"description": "KBANT monorepo",
"repository": "https://github.com/kbant/kbant005.git",
"author": "Henry Will",
"private": true,
"license": "MIT",
"scripts": {
"reset": "find . -type dir -name node_modules | xargs rm -rf && rm -rf yarn.lock",
"app:build": "yarn workspace @kbant/app build",
"mobile": "yarn workspace @kbant/mobile start",
"web": "yarn workspace @kbant/web start",
"electron": "yarn workspace @kbant/electron start",
"electron:package:mac": "yarn workspace @kbant/electron package:mac",
"electron:package:win": "yarn workspace @kbant/electron package:win",
"electron:package:linux": "yarn workspace @kbant/electron package:linux",
"extensions": "yarn workspace @kbant/extensions start",
"storybook:mobile": "yarn workspace @kbant/storybook start",
"storybook:web": "yarn workspace @kbant/storybook web"
},
"workspaces": {
"packages": [
"packages/*"
],
"nohoist": []
},
"devDependencies": {
"@tsconfig/react-native": "^2.0.3",
"@typescript-eslint/eslint-plugin": "^5.48.2",
"@typescript-eslint/parser": "^5.48.2",
"babel-plugin-module-resolver": "^5.0.0",
"eslint": "^8.32.0",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-react-app": "^6.2.2",
"eslint-plugin-react-native": "^4.0.0",
"prettier": "^2.8.3",
"typescript": "^4.9.5"
},
"packageManager": "[email protected]"
}