forked from saas-js/saas-ui
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
126 lines (126 loc) · 4.19 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
120
121
122
123
124
125
126
{
"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/*' npm publish --access public --tag next",
"publish": "yarn workspaces foreach -p --from '@saas-ui/*' npm publish --access public && yarn changeset tag",
"storybook": "start-storybook -p 6006",
"build:storybook": "build-storybook && sb extract",
"prepare": "husky install",
"clean": "turbo run clean",
"test": "jest --maxWorkers=50%",
"test:watch": "jest --maxWorkers=25% --watch --onlyChanged",
"test:ci": "jest --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:tokens": "chakra-cli tokens packages/saas-ui-theme/src/saas-ui",
"build:packages": "turbo run build --scope='@saas-ui/*' --scope='!@saas-ui/props-docs' --concurrency=5 --no-deps --continue && yarn build:tokens",
"clean:packages": "turbo run clean",
"build:props-docs": "yarn w @saas-ui/props-docs build"
},
"workspaces": [
"packages/*",
"apps/*",
"examples/*",
"tooling/next-workspaces",
"tooling/test-utils"
],
"devDependencies": {
"@babel/core": "^7.18.6",
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@babel/preset-env": "^7.18.6",
"@babel/preset-react": "^7.18.6",
"@babel/preset-typescript": "^7.18.6",
"@chakra-ui/cli": "^2.1.1",
"@chakra-ui/react": "^2.2.1",
"@changesets/cli": "^2.23.0",
"@clerk/clerk-react": "^3.3.0",
"@emotion/jest": "^11.9.3",
"@emotion/react": "^11.9.3",
"@emotion/styled": "^11.9.3",
"@jest/types": "^28.1.1",
"@manypkg/get-packages": "^1.1.3",
"@storybook/addon-a11y": "^6.5.9",
"@storybook/addon-storysource": "^6.5.9",
"@storybook/addon-toolbars": "^6.5.9",
"@storybook/addon-viewport": "^6.5.9",
"@storybook/addons": "^6.5.9",
"@storybook/cli": "^6.5.9",
"@storybook/client-api": "^6.5.9",
"@storybook/preview-web": "^6.5.9",
"@storybook/react": "^6.5.9",
"@storybook/testing-react": "^1.3.0",
"@swc-node/jest": "^1.5.2",
"@types/node": "^17.0.45",
"@typescript-eslint/eslint-plugin": "^5.30.0",
"@typescript-eslint/parser": "^5.30.0",
"cross-env": "^7.0.3",
"date-fns": "^2.28.0",
"eslint": "^8.18.0",
"eslint-config-prettier": "^8.5.0",
"eslint-import-resolver-typescript": "^2.7.1",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-storybook": "^0.5.13",
"framer-motion": "^6.3.16",
"husky": "^8.0.1",
"hygen": "^6.2.7",
"jest": "^28.1.2",
"jest-environment-jsdom": "^28.1.2",
"jest-watch-typeahead": "^1.1.0",
"lint-staged": "^13.0.3",
"lodash": "^4.17.21",
"microbundle": "^0.15.0",
"prettier": "^2.7.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-icons": "^4.4.0",
"react-is": "^18.2.0",
"react-test-renderer": "^18.2.0",
"rimraf": "^3.0.2",
"storybook-addon-swc": "^1.1.7",
"ts-node": "^10.8.1",
"turbo": "^1.3.1",
"typescript": "^4.7.3",
"yup": "^0.32.11",
"zod": "^3.17.3"
},
"resolutions": {
"@chakra-ui/system": "^2.2.0",
"@saas-ui/props-docs": "1.4.0"
},
"packageManager": "yarn@3.1.1"
}