-
Notifications
You must be signed in to change notification settings - Fork 0
/
workspace.jsonc
90 lines (90 loc) · 3.33 KB
/
workspace.jsonc
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
/**
* this is the main configuration file of your bit workspace.
* for full documentation, please see: https://bit.dev/reference/workspace/workspace-json
**/{
"$schema": "https://static.bit.dev/teambit/schemas/schema.json",
/**
* main configuration of the Bit workspace.
**/
"teambit.workspace/workspace": {
/**
* the name of the component workspace. used for development purposes.
**/
"name": "tk-ui-react-v2",
/**
* set the icon to be shown on the Bit server.
**/
"icon": "https://static.bit.dev/brands/bit-logo-min.png",
/**
* default directory to place a component during `bit import` and `bit create`.
* the following placeholders are available:
* name - component name includes namespace, e.g. 'ui/button'.
* scopeId - full scope-id includes the owner, e.g. 'teambit.compilation'.
* scope - scope name only, e.g. 'compilation'.
* owner - owner name in bit.dev, e.g. 'teambit'.
**/
"defaultDirectory": "{scope}/{name}",
/**
* default scope for all components in workspace.
**/
"defaultScope": "takumakira-individual.tk-ui-react-v2",
"resolveAspectsFromNodeModules": true,
"resolveEnvsFromRoots": true
},
/**
* Enable generator templates by uncommenting the desired environments below.
* These generators scaffold components for Node, React, Vue, and Angular.
* After uncommenting, run `bit install` to make them available in your workspace.
* Explore more dev environments at: https://bit.dev/docs/getting-started/composing/dev-environments
**/
"teambit.generator/generator": {
"envs": [
"bitdev.react/react-env",
"bitdev.node/node-env"
]
},
/**
* main configuration for component dependency resolution.
**/
"teambit.dependencies/dependency-resolver": {
/**
* choose the package manager for Bit to use. you can choose between 'yarn', 'pnpm'
*/
"packageManager": "teambit.dependencies/pnpm",
"policy": {
"dependencies": {
"@acme/design.acme-theme": "^2.0.4",
"@acme/design.content.card": "^1.0.2",
"@apollo/server": "^4.10.0",
"@apollo/subgraph": "^2.7.1",
"@bitdesign/sparks.content.logo": "^0.0.4",
"@bitdesign/sparks.layout.flex": "^0.0.1",
"@bitdesign/sparks.layout.header": "^0.0.5",
"@bitdesign/sparks.navigation.link": "^0.0.2",
"@bitdesign/sparks.typography.heading": "^0.0.1",
"@bitdesign/sparks.typography.text": "^0.0.1",
"@bitdev/node.node-env": "^1.0.26",
"@bitdev/node.node-server": "^0.0.12",
"@bitdev/platforms.platform": "0.0.0-483e9fc56cee6e403caf0d0331d36acf1b0a281b",
"@bitdev/react.app-types.vite-react": "^1.1.25",
"@bitdev/react.react-env": "^1.1.49",
"@teambit/base-react.themes.theme-provider": "^1.0.0",
"@vitejs/plugin-react": "^4.2.1",
"chart.js": "^4.4.2",
"classnames": "^2.3.2",
"cors": "^2.8.5",
"express": "^4.18.3",
"react-query": "^3.39.3",
"vite": "^5.0.8"
},
"peerDependencies": {}
},
"linkCoreAspects": true,
"rootComponents": true
},
"teambit.workspace/workspace-config-files": {
"enableWorkspaceConfigWrite": true
},
"takumakira-individual.tk-ui-react-v2/tk-ui-react-v2": {},
"takumakira-individual.tk-ui-react-v2/tk-ui-react-v2-service-express": {}
}