forked from saas-js/saas-ui
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
119 lines (119 loc) · 4.07 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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
{
"name": "saas-ui",
"description": "The frontend stack for SaaS companies",
"private": true,
"author": "Eelco Wiersma <eelco@appulse.nl>",
"license": "MIT",
"homepage": "https://saas-ui.dev/",
"repository": {
"type": "git",
"url": "https://github.com/saas-js/saas-ui"
},
"keywords": [
"saas-ui",
"react",
"ui",
"chakra-ui",
"design-system",
"react-components",
"uikit",
"accessible",
"components",
"emotion",
"library"
],
"storybook": {
"title": "Saas UI",
"url": "https://storybook.saas-ui.dev"
},
"scripts": {
"w": "yarn workspace",
"dev:web": "yarn w website dev",
"dev:palette": "yarn w palette-docs dev",
"changelog:gen": "ts-node scripts/changelog-generate.ts",
"changelog:write": "ts-node scripts/changelog-write.ts",
"changelog:commit": "git add CHANGELOG.md && git commit -am 'docs: add changelog' && git push",
"changeset:next": "yarn changeset pre enter next",
"version": "yarn changelog:gen && changeset version",
"publish:next": "yarn workspaces foreach --from '@saas-ui/*' --exclude '@saas-ui/pro' --exclude '@saas-ui-pro/*' npm publish --access public --tag next",
"publish": "yarn workspaces foreach -p --from '@saas-ui/*' --exclude '@saas-ui/pro' --exclude '@saas-ui-pro/*' npm publish && yarn changeset tag",
"storybook": "yarn w saas-ui-storybook dev",
"build:storybook": "yarn w saas-ui-storybook build",
"prepare": "husky install",
"clean": "turbo run clean",
"test": "vitest",
"test:watch": "vitest --watch --onlyChanged",
"test:ci": "vitest --color --runInBand --ci",
"lint": "turbo run lint",
"lint:staged": "lint-staged --allow-empty --config lint-staged.config.js",
"create:pkg": "hygen package chakra-component",
"build:web": "yarn w website build",
"build:tokens": "chakra-cli tokens packages/saas-ui-theme/src/saas-ui",
"build:packages": "turbo run build --filter='./packages/saas-ui-*' --filter='!./packages/pro/*' --concurrency=5 --no-deps --continue && yarn build:tokens",
"build:packages:force": "turbo run build --filter='./packages/saas-ui-*' --filter='!./packages/pro/*' --concurrency=5 --no-deps --continue --force && yarn build:tokens",
"clean:packages": "turbo run clean",
"build:storybook-addon": "yarn w @saas-ui/storybook-addon build",
"build:props-docs": "yarn w @saas-ui/props-docs build",
"preinstall": "rm -rf node_modules/odiff-bin"
},
"workspaces": [
"apps/*",
"packages/pro/saas-ui/*",
"packages/storybook",
"packages/saas-ui-*",
"tooling/next-workspaces",
"tooling/test-utils",
"tooling/props-docs",
"tooling/storybook-addon"
],
"devDependencies": {
"@chakra-ui/cli": "^2.4.1",
"@chakra-ui/react": "^2.8.1",
"@changesets/cli": "^2.26.2",
"@emotion/react": "^11.11.1",
"@emotion/styled": "^11.11.0",
"@manypkg/get-packages": "^1.1.3",
"@swc/core": "^1.3.85",
"@types/node": "^18.17.16",
"@typescript-eslint/eslint-plugin": "^5.62.0",
"@typescript-eslint/parser": "^5.62.0",
"browserslist": "^4.21.10",
"cross-env": "^7.0.3",
"date-fns": "^2.30.0",
"eslint": "^8.49.0",
"eslint-config-prettier": "^8.10.0",
"eslint-import-resolver-typescript": "^3.6.0",
"eslint-plugin-import": "^2.28.1",
"eslint-plugin-storybook": "^0.6.13",
"framer-motion": "^10.16.4",
"husky": "^8.0.3",
"hygen": "^6.2.11",
"jsdom": "^22.1.0",
"lint-staged": "^13.3.0",
"lodash": "^4.17.21",
"node-releases": "^2.0.13",
"prettier": "^2.8.8",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-icons": "^4.11.0",
"react-is": "^18.2.0",
"react-test-renderer": "^18.2.0",
"rimraf": "^4.4.1",
"ts-node": "^10.9.1",
"tsup": "^6.7.0",
"turbo": "^1.10.13",
"typescript": "^5.2.2",
"vercel-submodules": "^1.0.10",
"yup": "^1.2.0",
"zod": "^3.22.2"
},
"resolutions": {
"unist-util-visit": "4.0.0",
"react": "18.2.0"
},
"packageManager": "yarn@3.3.0",
"dependencies": {
"@storybook/testing-react": "^2.0.1",
"vitest": "^0.34.4"
}
}