-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
93 lines (93 loc) · 3.17 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
{
"name": "vite-storybook-poc",
"private": true,
"version": "0.0.0",
"type": "module",
"workspaces": [
"packages/components/*",
"packages/theme"
],
"scripts": {
"prepare": "husky install",
"dev": "vite",
"clean": "lerna clean --yes && lerna exec -- rm -rf dist",
"build": "tsc && lerna run build",
"preview": "vite preview",
"test": "vitest watch",
"test:run": "vitest run",
"start": "npm run handle-theme-config && npm run storybook",
"storybook:build": "storybook build",
"storybook:upgrade": "storybook upgrade --prerelease",
"storybook": "storybook dev -p 6006",
"lint": "eslint --config .eslintrc.cjs . --ext .ts,.tsx,.js --fix",
"lint-staged": "lint-staged --config .lintstagedrc.json",
"prettier": "prettier --config .prettierrc.json --write \"{packages,src}/**/*.{ts,tsx}\"",
"typecheck": "tsc",
"handle-theme-config": "ts-node-esm handleThemeConfiguration.ts"
},
"devDependencies": {
"@radix-ui/react-tabs": "^1.0.1",
"@storybook/addon-essentials": "^7.0.0-beta.25",
"@storybook/addon-interactions": "^7.0.0-beta.25",
"@storybook/addon-links": "^7.0.0-beta.25",
"@storybook/blocks": "^7.0.0-beta.25",
"@storybook/react": "^7.0.0-beta.25",
"@storybook/react-vite": "^7.0.0-beta.25",
"@storybook/testing-library": "^0.0.14-next.1",
"@testing-library/dom": "^8.19.1",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^13.4.0",
"@testing-library/user-event": "^14.4.3",
"@types/react": "^18.0.26",
"@types/react-dom": "^18.0.9",
"@typescript-eslint/eslint-plugin": "5.48.1",
"@vitejs/plugin-react": "^3.0.0",
"autoprefixer": "^10.4.13",
"class-variance-authority": "^0.4.0",
"classnames": "^2.3.2",
"copy-to-clipboard": "^3.3.3",
"eslint": "8.31.0",
"eslint-config-prettier": "8.6.0",
"eslint-config-standard": "17.0.0",
"eslint-plugin-import": "2.26.0",
"eslint-plugin-n": "15.6.0",
"eslint-plugin-node": "11.1.0",
"eslint-plugin-prettier": "4.2.1",
"eslint-plugin-promise": "6.1.1",
"eslint-plugin-react": "7.31.11",
"eslint-plugin-react-hooks": "4.6.0",
"eslint-plugin-simple-import-sort": "8.0.0",
"eslint-plugin-standard": "4.1.0",
"eslint-plugin-storybook": "^0.6.10",
"eslint-plugin-tailwindcss": "3.8.3",
"eslint-plugin-testing-library": "5.9.1",
"husky": "8.0.3",
"jsdom": "^21.0.0",
"lerna": "^6.1.0",
"lint-staged": "13.1.0",
"npm": "^9.2.0",
"postcss": "^8.4.20",
"postcss-import": "^15.1.0",
"postcss-nesting": "^10.2.0",
"prettier": "2.8.2",
"prettier-plugin-tailwindcss": "0.2.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-element-to-jsx-string": "^15.0.0",
"react-live": "^3.1.1",
"rollup-plugin-terser": "^7.0.2",
"storybook": "^7.0.0-beta.25",
"storybook-addon-themes": "^6.1.0",
"tailwindcss": "^3.2.4",
"tailwindcss-radix": "^2.6.2",
"terser": "^5.16.1",
"ts-deepmerge": "^6.0.2",
"ts-node": "^10.9.1",
"type-fest": "^3.5.5",
"typescript": "^4.9.3",
"vite": "^4.0.0",
"vite-plugin-dts": "^1.7.1",
"vite-tsconfig-paths": "^4.0.3",
"vitest": "^0.27.1"
}
}