generated from z9956/rollup-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
71 lines (71 loc) · 2.08 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
{
"name": "simple-ui",
"private": true,
"description": "A simple UI library",
"author": "9956 <[email protected]>",
"license": "MIT",
"scripts": {
"dev": "turbo run dev --filter=!./examples/*",
"build": "turbo run build --filter=!./examples/*",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build -o dist",
"lint": "pnpm lint:prettier && pnpm lint:eslint",
"lint:prettier": "prettier --write packages/components --cache",
"lint:eslint": "eslint packages/components --ext .ts,.tsx --config .eslintrc --cache",
"prepare": "husky install",
"test": "pnpm jest"
},
"dependencies": {
"@emotion/css": "^11.11.2",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-icons": "^4.11.0",
"react-transition-group": "^4.4.5"
},
"devDependencies": {
"@storybook/addon-a11y": "^7.4.6",
"@storybook/addon-actions": "^7.4.6",
"@storybook/addon-controls": "^7.4.6",
"@storybook/addon-docs": "^7.4.6",
"@storybook/addon-essentials": "^7.4.6",
"@storybook/addon-interactions": "^7.4.6",
"@storybook/addon-links": "^7.4.6",
"@storybook/addon-onboarding": "1.0.8",
"@storybook/blocks": "^7.4.6",
"@storybook/react": "^7.4.6",
"@storybook/react-vite": "7.4.6",
"@storybook/testing-library": "^0.2.2",
"@swc/core": "^1.3.92",
"@swc/jest": "^0.2.29",
"@types/jest": "^29.5.5",
"@types/react": "^18.2.27",
"@types/react-dom": "^18.2.12",
"@types/react-test-renderer": "^18.0.3",
"@types/react-transition-group": "^4.4.7",
"@typescript-eslint/eslint-plugin": "^5.62.0",
"@typescript-eslint/parser": "^5.62.0",
"eslint": "^8.51.0",
"eslint-config-prettier": "^8.10.0",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-storybook": "^0.6.15",
"husky": "^8.0.3",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"lint-staged": "^13.3.0",
"prettier": "^2.8.8",
"react-test-renderer": "^18.2.0",
"storybook": "^7.4.6",
"turbo": "canary",
"typescript": "^4.9.5"
},
"pnpm": {
"overrides": {
"react": "^18.2.0",
"react-dom": "^18.2.0"
}
},
"engines": {
"node": ">=16.x"
}
}