-
Notifications
You must be signed in to change notification settings - Fork 64
/
package.json
91 lines (91 loc) · 3.54 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
{
"name": "svelteui",
"version": "0.15.7",
"private": true,
"description": "SvelteUI Components Monorepo.",
"keywords": [
"Svelte",
"Sveltekit",
"UI",
"Component Library"
],
"repository": {
"type": "git",
"url": "https://github.com/svelteuidev/svelteui"
},
"license": "MIT",
"author": "Kamell Perry",
"type": "module",
"workspaces": [
"apps/*",
"packages/*",
"configuration/*"
],
"scripts": {
"build:docs": "yarn workspace svelteui-docs build",
"build:storybook": "cd packages/svelteui-core && storybook build -c ../../configuration/storybook",
"bump:major": "deno run --unstable --allow-read --allow-write ./scripts/bump.ts major",
"bump:minor": "deno run --unstable --allow-read --allow-write ./scripts/bump.ts minor",
"bump:next": "deno run --unstable --allow-read --allow-write ./scripts/bump.ts next",
"bump:patch": "deno run --unstable --allow-read --allow-write ./scripts/bump.ts patch",
"clean": "rimraf packages/*/{dist,package,.turbo,.svelte-kit}",
"clean:all": "rimraf packages/*/{node_modules,.svelte-kit,dist,package,.turbo} apps/docs/node_modules",
"cm": "git add . && ./node_modules/cz-customizable/standalone.js",
"cm:noadd": "./node_modules/cz-customizable/standalone.js",
"coverage": "turbo run coverage --parallel",
"deploy:docs": "yarn build:docs && yarn script:build-docs && yarn workspace svelteui-docs deploy:nobuild",
"dev": "yarn storybook",
"dev:docs": "yarn package && yarn workspace svelteui-docs dev",
"format": "prettier --write --ignore-unknown ./package.json configuration apps && turbo run format --parallel",
"postinstall": "npx patch-package",
"lint": "turbo run lint --parallel",
"package": "yarn clean && turbo run package --parallel",
"pre-commit": "lint-staged",
"prepare": "husky install",
"prepare:release": "yarn prepush && yarn package",
"prepush": "yarn sort && yarn format && yarn lint",
"pub": "turbo run pub --parallel",
"pub:docs": "touch apps/docs/__DOCS__/dist/CNAME && echo 'svelteui.dev' > apps/docs/build/CNAME && gh-pages -d apps/docs/build -t true -b gh-pages",
"release": "yarn pub && sh scripts/git/discard.sh",
"script:build-docs": "deno run -A --unstable ./scripts/docs/build.ts",
"script:pre-release": "deno run --unstable --allow-read --allow-write ./scripts/pre-release.ts",
"sort": "npx sort-package-json && turbo run sort && syncpack set-semver-ranges -p -d",
"storybook": "yarn sync && cd packages/svelteui-core && storybook dev -p 6006 -c ../../configuration/storybook",
"sync": "turbo run sync --parallel",
"sync:repo": "sh scripts/git/sync-branches.sh",
"test": "turbo run test --parallel",
"watch": "turbo run watch --parallel"
},
"lint-staged": {
"*": "prettier --write --ignore-unknown",
"*.{js,ts,svelte}": "eslint --fix"
},
"devDependencies": {
"@rollup/plugin-replace": "5.0.2",
"@storybook/addon-actions": "7.0.11",
"@storybook/addon-essentials": "7.0.11",
"@storybook/addon-interactions": "7.0.11",
"@storybook/addon-links": "7.0.11",
"@storybook/addon-svelte-csf": "3.0.2",
"@storybook/svelte-vite": "7.0.11",
"@storybook/sveltekit": "7.0.11",
"@sveltejs/vite-plugin-svelte": "2.2.0",
"c8": "7.13.0",
"cz-customizable": "6.3.0",
"gh-pages": "5.0.0",
"husky": "7.0.4",
"lint-staged": "13.2.2",
"patch-package": "6.5.1",
"prettier": "2.8.8",
"prettier-plugin-svelte": "2.10.0",
"radix-icons-svelte": "1.2.1",
"react": "18.2.0",
"react-dom": "18.2.0",
"rimraf": "3.0.2",
"storybook": "7.0.11",
"storybook-dark-mode": "3.0.0",
"syncpack": "8.2.4",
"turbo": "latest",
"vitest": "0.31.0"
}
}