This repository has been archived by the owner on May 4, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
117 lines (117 loc) · 3.23 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
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
{
"version": "0.2.0",
"license": "MIT",
"main": "dist/index.mjs",
"typings": "dist/index.d.ts",
"files": [
"dist"
],
"engines": {
"node": ">=10"
},
"scripts": {
"watch": "tcm --watch ./lib",
"check:up-to-date-types": "tcm --listDifferent ./lib",
"build": "tsc && vite build",
"release": "changeset publish",
"test": "jest",
"format": "prettier --write lib/**/* stories/**/* && git add -A .",
"lint": "eslint ./src --ext .ts,.tsx",
"lint-fix": "eslint --fix .",
"lint:ts": "tsc",
"size": "size-limit",
"analyze": "size-limit --why",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build"
},
"peerDependencies": {
"react": ">=16"
},
"prettier": {
"printWidth": 80,
"semi": true,
"singleQuote": true,
"trailingComma": "es5"
},
"name": "groovy-box",
"author": "SySagar",
"size-limit": [
{
"path": "dist/groovy-box.cjs.production.min.js",
"limit": "10 KB"
},
{
"path": "dist/groovy-box.esm.js",
"limit": "10 KB"
}
],
"devDependencies": {
"@babel/core": "^7.23.2",
"@babel/preset-env": "^7.23.2",
"@babel/preset-react": "^7.22.15",
"@babel/preset-typescript": "^7.23.2",
"@changesets/cli": "^2.27.1",
"@radix-ui/react-label": "^2.0.2",
"@size-limit/preset-small-lib": "^10.0.2",
"@storybook/addon-essentials": "^7.5.3",
"@storybook/addon-info": "^5.3.21",
"@storybook/addon-links": "^7.5.3",
"@storybook/addon-postcss": "^2.0.0",
"@storybook/addons": "^7.5.3",
"@storybook/react": "^7.6.17",
"@storybook/react-webpack5": "7.5.3",
"@storybook/testing-react": "^2.0.1",
"@testing-library/jest-dom": "^6.1.5",
"@testing-library/react": "^14.1.2",
"@types/node": "^20.11.19",
"@types/react": "^18.2.37",
"@types/react-dom": "^18.2.15",
"@typescript-eslint/eslint-plugin": "^6.20.0",
"@typescript-eslint/parser": "^6.20.0",
"@vitejs/plugin-react": "^4.2.1",
"autoprefixer": "^10.4.16",
"babel-loader": "^9.1.3",
"clsx": "^2.1.0",
"css-loader": "^6.10.0",
"css-modules-typescript-loader": "^4.0.1",
"eslint": "^8.56.0",
"eslint-config-react-app": "^7.0.1",
"eslint-plugin-prettier": "^3.3.1",
"eslint-plugin-react": "^7.33.2",
"husky": "^8.0.0",
"identity-obj-proxy": "^3.0.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"jest-styled-components": "^7.2.0",
"lint-staged": "^15.2.0",
"postcss": "^8.4.31",
"prettier": "^3.2.4",
"radix-ui": "^1.0.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-is": "^18.2.0",
"rollup-plugin-postcss": "^4.0.2",
"size-limit": "^10.0.2",
"storybook": "^7.6.17",
"tailwindcss": "^3.3.5",
"tslib": "^2.6.2",
"typed-css-modules": "^0.9.1",
"typescript": "^5.2.2",
"typescript-plugin-css-modules": "^5.1.0",
"typings-for-css-modules-loader": "^1.7.0",
"vite": "^5.1.3",
"vite-plugin-dts": "^3.7.2",
"vite-plugin-lib-inject-css": "^1.3.0"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"prettier --write"
]
},
"optionalDependencies": {
"@rollup/rollup-linux-x64-gnu": "4.6.1"
},
"dependencies": {
"@storybook/addon-controls": "^8.0.8"
}
}