-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
72 lines (72 loc) · 2.28 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
{
"name": "tails-ui",
"version": "1.0.0",
"private": true,
"workspaces": [
"apps/*",
"packages/**/**"
],
"scripts": {
"build": "turbo run build --filter=@tails-ui/components",
"dev": "turbo run dev --parallel",
"lint": "turbo run lint",
"format": "prettier --write \"**/*.{ts,tsx,md}\"",
"plop": "plop --plopfile ./scripts/plop.mjs",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook",
"deploy-storybook": "storybook-to-ghpages",
"playground": "pnpm --filter @tails-ui/playground dev",
"version-packages": "changeset version",
"release": "pnpm build && changeset publish",
"test": "vitest run --reporter verbose",
"test:watch": "vitest dev --reporter verbose --allowOnly",
"test:ui": "pnpm test:watch --ui",
"test:debugger": "ndb pnpm test:watch"
},
"devDependencies": {
"@changesets/changelog-github": "^0.4.8",
"@changesets/cli": "^2.26.0",
"@storybook/addon-a11y": "^6.5.15",
"@storybook/addon-essentials": "^6.5.15",
"@storybook/addon-interactions": "^6.5.15",
"@storybook/addon-links": "^6.5.15",
"@storybook/addon-postcss": "^2.0.0",
"@storybook/addons": "^6.5.15",
"@storybook/builder-vite": "^0.2.4",
"@storybook/react": "^6.5.15",
"@storybook/storybook-deployer": "^2.8.12",
"@storybook/testing-library": "^0.0.13",
"@storybook/theming": "^6.5.15",
"@tails-ui/eslint-config": "workspace:*",
"@tails-ui/plugin": "workspace:*",
"@tails-ui/styles": "workspace:*",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^13.4.0",
"@types/jest-axe": "^3.5.5",
"@types/react": "^18.0.17",
"@types/testing-library__jest-dom": "^5.14.5",
"@vitejs/plugin-react": "^2.1.0",
"@vitest/ui": "^0.27.1",
"autoprefixer": "^10.4.12",
"changeset": "^0.2.6",
"clean-package": "^2.2.0",
"jest-axe": "^7.0.0",
"jsdom": "^21.0.0",
"plop": "^3.1.1",
"postcss": "^8.4.18",
"prettier": "latest",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"rimraf": "^3.0.2",
"sb": "^6.5.12",
"tailwindcss": "^3.2.1",
"tsup": "^6.5.0",
"turbo": "latest",
"typescript": "^4.8.4",
"vitest": "^0.27.1"
},
"engines": {
"node": "<=16.19.0"
},
"packageManager": "[email protected]"
}