-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 1.32 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
{
"name": "design-system-starter",
"author": "Evgeny Khoroshilov (https://github.com/XOP)",
"homepage": "https://github.com/XOP/design-system-starter",
"license": "MIT",
"private": true,
"scripts": {
"lint": "turbo run lint",
"format": "turbo run format --no-daemon",
"format:fix": "turbo run format:fix --no-daemon",
"gen:ui": "turbo gen dss-ui-component",
"syncpack": "syncpack fix-mismatches",
"syncpack:list": "syncpack list-mismatches",
"change:gen": "changeset add",
"change:version": "changeset version",
"dev": "turbo run dev --filter=./apps/storybook",
"test": "turbo test",
"build": "pnpm build:pck && pnpm build:doc && pnpm build:app",
"build:pck": "turbo run build --filter=./packages/*",
"build:doc": "turbo run build --filter=./apps/storybook --filter=./apps/docs",
"build:app": "turbo run build --filter=./apps/example-*",
"release": "pnpm -r publish --access public --filter \"./packages/**\" --filter \"./tsconfig\""
},
"devDependencies": {
"@biomejs/biome": "^1.9.0",
"@changesets/changelog-git": "^0.2.0",
"@changesets/cli": "^2.27.1",
"@turbo/gen": "^2.0.9",
"@types/node": "^20",
"mkdirp": "^3.0.1",
"rimraf": "^5.0.5",
"syncpack": "^11.2.1",
"tsx": "^4.7.2",
"turbo": "^2.0.9"
},
"packageManager": "[email protected]"
}