-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
100 lines (100 loc) · 2.58 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
{
"version": "2.0.1",
"license": "MIT",
"main": "dist/antd-weekly-calendar.umd.js",
"module": "dist/antd-weekly-calendar.es.js",
"typings": "dist/types/index.d.ts",
"description": "weekly calendar for antd",
"files": [
"dist/**/*"
],
"engines": {
"node": ">=18"
},
"repository": {
"type": "git",
"url": "https://github.com/yoavweber/antd-weekly-calendar.git"
},
"scripts": {
"dev": "vite",
"build": "tsc && vite build ",
"serve": "vite preview",
"test": "vitest",
"lint": "eslint . --ext .ts,.tsx",
"prepare": "vite build",
"size": "size-limit",
"analyze": "size-limit --why",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build"
},
"husky": {
"hooks": {
"pre-commit": "tsdx lint"
}
},
"prettier": {
"printWidth": 80,
"semi": true,
"singleQuote": true,
"trailingComma": "es5"
},
"name": "antd-weekly-calendar",
"author": "yoavweber",
"size-limit": [
{
"path": "dist/antd-weekly-calendar.cjs.production.min.js",
"limit": "10 KB"
},
{
"path": "dist/antd-weekly-calendar.esm.js",
"limit": "10 KB"
}
],
"dependencies": {
"antd": "^5.20.3",
"date-fns": "^3.6.0",
"less": "^4.2.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"tslib": "^2.6.3"
},
"devDependencies": {
"@chromatic-com/storybook": "^1.6.1",
"@storybook/addon-actions": "^8.2.9",
"@storybook/addon-essentials": "^8.2.9",
"@storybook/addon-interactions": "^8.2.9",
"@storybook/addon-links": "^8.2.9",
"@storybook/addon-onboarding": "^8.2.9",
"@storybook/addons": "^7.6.17",
"@storybook/blocks": "^8.2.9",
"@storybook/builder-webpack5": "^8.2.9",
"@storybook/manager-webpack5": "^6.5.16",
"@storybook/preset-create-react-app": "^8.2.9",
"@storybook/react": "^8.2.9",
"@storybook/react-vite": "^8.2.9",
"@storybook/test": "^8.2.9",
"@testing-library/dom": "^10.4.0",
"@testing-library/jest-dom": "^6.4.8",
"@testing-library/react": "^16.0.0",
"@testing-library/user-event": "^14.5.2",
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"@vitejs/plugin-react": "^4.0.0",
"eslint": "^8.45.0",
"eslint-plugin-storybook": "^0.8.0",
"husky": "^9.1.4",
"identity-obj-proxy": "^3.0.0",
"jsdom": "^24.1.1",
"size-limit": "^6.0.0",
"storybook": "^8.2.9",
"typescript": "^5.5.4",
"vite": "^4.0.0",
"vite-plugin-dts": "^4.2.1",
"vitest": "^0.32.2"
},
"eslintConfig": {
"extends": [
"plugin:storybook/recommended"
]
}
}