-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
34 lines (34 loc) · 1.11 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
{
"name": "design-system",
"packageManager": "[email protected]",
"workspaces": [
"packages/*"
],
"resolutions": {
"typescript": "4.3.5",
"@semicolondsm/design-token": "workspace:packages/design-token",
"@semicolondsm/react-theming": "workspace:packages/react-theming",
"@semicolondsm/ui": "workspace:packages/ui",
"@semicolondsm/react-emotion-theme": "workspace:packages/react-emotion-theme"
},
"scripts": {
"build:all": "yarn workspaces foreach -t -p run build",
"build:light": "yarn workspaces since run 'npm publish' main develop",
"multi-semantic-release": "multi-semantic-release --sequential-init",
"release": "yarn run multi-semantic-release"
},
"devDependencies": {
"@semantic-release/commit-analyzer": "^9.0.1",
"@semantic-release/git": "^10.0.0",
"@semantic-release/github": "^8.0.1",
"@semantic-release/npm": "^8.0.1",
"@semantic-release/release-notes-generator": "^10.0.2",
"multi-semantic-release": "^2.9.1",
"typescript": "^4.4.3"
},
"dependencies": {
"@types/react": "18.0.3",
"react": "18.0.0",
"react-dom": "18.0.0"
}
}