-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
104 lines (104 loc) · 3 KB
/
package.json
File metadata and controls
104 lines (104 loc) · 3 KB
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
101
102
103
104
{
"name": "ddingdong-design-system",
"version": "2.0.5",
"type": "module",
"keywords": [
"react",
"ui",
"components",
"design-system"
],
"author": "ddingdong-fe",
"license": "MIT",
"homepage": "https://github.com/COW-dev/ddingdong2.0#readme",
"main": "./dist/ddingdong-design-system.js",
"types": "./dist/index.d.ts",
"sideEffects": false,
"files": [
"dist",
"README.md"
],
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/ddingdong-design-system.es.js",
"require": "./dist/ddingdong-design-system.umd.js"
},
"./styles.css": "./dist/ddingdong-design-system.css"
},
"scripts": {
"lint": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
"dev": "vite",
"build": "vite build",
"preview": "vite preview",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build",
"prepare": "husky && husky install"
},
"dependencies": {
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"tailwind-merge": "^2.6.0"
},
"peerDependencies": {
"framer-motion": "^11.0.0",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"tailwindcss": "^4.1.12"
},
"devDependencies": {
"@chromatic-com/storybook": "^3.2.3",
"@eslint/eslintrc": "^3.2.0",
"@storybook/addon-a11y": "^8.6.14",
"@storybook/addon-essentials": "^8.6.14",
"@storybook/addon-interactions": "^8.6.14",
"@storybook/addon-onboarding": "^8.6.14",
"@storybook/blocks": "^8.6.14",
"@storybook/react": "^8.6.14",
"@storybook/react-vite": "^8.6.14",
"@storybook/test": "^8.6.14",
"@svgr/webpack": "^8.1.0",
"@tailwindcss/postcss": "^4.1.12",
"@types/node": "^20",
"@types/react": "^19",
"@types/react-dom": "^19",
"@typescript-eslint/eslint-plugin": "^8.19.0",
"@typescript-eslint/parser": "^8.19.0",
"@vitejs/plugin-react-swc": "^3.11.0",
"autoprefixer": "^10.4.20",
"chromatic": "^11.22.0",
"eslint": "^8.57.1",
"eslint-config-prettier": "^9.1.0",
"eslint-import-resolver-typescript": "^3.7.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-react": "^7.37.3",
"eslint-plugin-react-hooks": "^5.2.0",
"eslint-plugin-react-refresh": "^0.4.16",
"eslint-plugin-storybook": "^0.11.2",
"eslint-plugin-vitest-globals": "^1.5.0",
"framer-motion": "^11.18.2",
"husky": "^9.1.7",
"hygen": "^6.2.11",
"lint-staged": "^15.3.0",
"postcss": "^8.5.6",
"prettier": "^3.4.2",
"prettier-plugin-tailwindcss": "^0.6.9",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"storybook": "^8.6.14",
"typescript": "^5",
"vite": "^6.3.5",
"vite-plugin-dts": "^4.5.4",
"vite-plugin-svgr": "^4.3.0",
"vite-tsconfig-paths": "^5.1.4"
},
"lint-staged": {
"src/**/*.{js,jsx,ts,tsx}": [
"eslint --ext .tsx --ext .ts src/",
"prettier --write"
],
"*.js": "eslint --cache --fix"
}
}