-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
118 lines (118 loc) · 3.62 KB
/
package.json
File metadata and controls
118 lines (118 loc) · 3.62 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
105
106
107
108
109
110
111
112
113
114
115
116
117
118
{
"name": "@creativecodeco/ui",
"description": "System Design CreativeCode.com.co",
"keywords": [
"creativeCode.com.co",
"creativecodeco/ui",
"tailwindcss",
"daisyui",
"ui",
"framework design",
"design system"
],
"version": "1.0.4",
"homepage": "https://github.com/creativecodeco/ui",
"author": {
"name": "John Toro",
"email": "joaltoroc@creativecode.com.co"
},
"license": "MIT",
"main": "lib/index.js",
"source": "src/index.ts",
"scripts": {
"dev": "npm run build; npm run storybook",
"dev:css": "postcss src/theme/main.css -o lib/theme/main.css --watch",
"build": "rm -rf lib; tsc -p tsconfig.build.json; npm run build:alias; npm run build:css",
"build:alias": "tsc-alias -p tsconfig.build.json",
"build:css": "postcss src/theme/main.css -o lib/theme/main.css --minify; cpx 'src/theme/*[.]css' 'lib/theme/css'",
"build-storybook": "npm run build; storybook build",
"chromatic": "chromatic --only-changed true",
"lint": "npm run lint:eslint",
"lint:eslint": "eslint .",
"lint:fix": "npm run lint:eslint --fix --quiet",
"prepack": "npm run build",
"prepare": "husky",
"release": "npm publish --access public",
"storybook": "storybook dev -p 6006",
"test": "jest .",
"test:action": "jest --coverage | tee ./coverage.txt && jest --ci --reporters=default --reporters=jest-junit",
"test:update": "jest --updateSnapshot",
"test:watch": "jest --watch"
},
"peerDependencies": {
"@tailwindcss/postcss": "4.1.18",
"postcss": "8.5.6",
"react": "18.3.1",
"react-hook-form": "7.58.1",
"tailwindcss": "4.1.18",
"usehooks-ts": "3.1.1"
},
"dependencies": {
"@tailwindcss/postcss": "4.2.2",
"postcss": "8.5.8",
"react": "18.3.1",
"react-hook-form": "7.72.0",
"tailwindcss": "4.2.2",
"usehooks-ts": "3.1.1"
},
"devDependencies": {
"@babel/core": "7.29.0",
"@babel/preset-env": "7.29.2",
"@babel/preset-react": "7.28.5",
"@babel/preset-typescript": "7.28.5",
"@chromatic-com/storybook": "5.1.1",
"@eslint/js": "9.39.4",
"@jest/globals": "30.3.0",
"@storybook/addon-docs": "10.3.3",
"@storybook/addon-links": "10.3.3",
"@storybook/addon-webpack5-compiler-swc": "4.0.3",
"@storybook/react-webpack5": "10.3.3",
"@testing-library/dom": "10.4.1",
"@testing-library/jest-dom": "6.9.1",
"@testing-library/react": "16.3.2",
"@testing-library/user-event": "14.6.1",
"@types/jest": "30.0.0",
"@types/node": "25.5.0",
"@types/react": "18.3.28",
"@types/react-dom": "18.3.7",
"chromatic": "16.0.0",
"classnames": "2.5.1",
"cpx2": "8.0.0",
"daisyui": "5.5.19",
"eslint": "9.39.4",
"eslint-config-prettier": "10.1.8",
"eslint-plugin-import": "2.32.0",
"eslint-plugin-prettier": "5.5.5",
"eslint-plugin-react": "7.37.5",
"eslint-plugin-react-hooks": "7.0.1",
"eslint-plugin-storybook": "10.3.3",
"eslint-plugin-unused-imports": "4.4.1",
"globals": "17.4.0",
"husky": "9.1.7",
"jest": "29.7.0",
"jest-environment-jsdom": "30.3.0",
"jest-junit": "16.0.0",
"jest-transform-css": "6.0.3",
"postcss-cli": "11.0.1",
"prettier": "3.8.1",
"prop-types": "15.8.1",
"react-dom": "18.3.1",
"react-icons": "5.6.0",
"storybook": "10.3.3",
"string-width": "8.2.0",
"ts-jest": "29.4.6",
"ts-node": "10.9.2",
"tsc-alias": "1.8.16",
"tsconfig-paths-webpack-plugin": "4.2.0",
"typescript": "5.9.3",
"typescript-eslint": "8.58.0"
},
"files": [
"lib"
],
"overrides": {
"handlebars": "4.7.9",
"minimatch": "9.0.7",
"lodash": "4.17.23"
}
}