-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
74 lines (74 loc) · 2.43 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
{
"name": "figma-kit-root",
"private": true,
"scripts": {
"site:dev": "pnpm --filter website dev",
"dev": "pnpm --filter figma-kit dev",
"build": "pnpm --filter figma-kit build",
"lint": "eslint \"**/{src,test}/**/*.{ts,tsx}\" --ext ts,tsx --fix --max-warnings 0",
"test": "pnpm --filter figma-kit test",
"prepare": "husky",
"storybook": "storybook dev -p 6006 --no-open",
"build-storybook": "storybook build"
},
"devDependencies": {
"@chromatic-com/storybook": "^1.5.0",
"@commitlint/cli": "^19.2.1",
"@commitlint/config-conventional": "^19.1.0",
"@storybook/addon-essentials": "8.1.5",
"@storybook/addon-interactions": "8.1.5",
"@storybook/addon-links": "8.1.5",
"@storybook/addon-storysource": "8.1.5",
"@storybook/blocks": "8.1.5",
"@storybook/react": "8.1.5",
"@storybook/react-vite": "8.1.5",
"@storybook/test": "8.1.5",
"@testing-library/jest-dom": "^6.4.2",
"@testing-library/react": "^14.2.2",
"@testing-library/user-event": "^14.5.2",
"@types/node": "^20.11.30",
"@types/react": "^18.2.66",
"@typescript-eslint/eslint-plugin": "^7.2.0",
"@typescript-eslint/parser": "^7.2.0",
"@vitejs/plugin-react": "^4.2.1",
"conventional-changelog-conventionalcommits": "^7.0.2",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.4.6",
"eslint-plugin-storybook": "^0.8.0",
"happy-dom": "^14.3.9",
"husky": "^9.0.11",
"lint-staged": "^15.2.2",
"postcss": "^8.4.38",
"postcss-cli": "^11.0.0",
"postcss-import": "^16.1.0",
"postcss-nesting": "^12.1.5",
"postcss-prefixer": "^3.0.0",
"postcss-variables-prefixer": "^1.2.0",
"prettier": "^3.2.5",
"react-element-to-jsx-string": "^15.0.0",
"semantic-release": "^24.0.0",
"storybook": "8.1.5",
"storybook-dark-mode": "^4.0.1",
"typescript": "^5.4.5",
"vite": "^5.2.7",
"vite-plugin-dts": "^3.9.0",
"vite-tsconfig-paths": "^4.3.2",
"vitest": "^1.5.0"
},
"lint-staged": {
"**/{src,test}/**/*.{ts,tsx}": [
"eslint --cache --fix --max-warnings 0",
"prettier --write"
]
},
"packageManager": "[email protected]",
"pnpm": {
"patchedDependencies": {
"@radix-ui/[email protected]": "patches/@[email protected]"
}
}
}