-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
107 lines (107 loc) · 2.96 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
{
"name": "@priyang/react-component-lib",
"version": "1.0.3",
"private": false,
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"module": "dist/index.mjs",
"exports": {
".": {
"import": "./dist/index.mjs",
"require": "./dist/index.js"
},
"./dist/index.css": {
"import": "./dist/index.css",
"require": "./dist/index.css"
},
"./package.json": "./package.json"
},
"files": [
"dist",
"src",
"README.md"
],
"engines": {
"node": ">=14"
},
"scripts": {
"build": "tsup",
"build:test": "tsup && npm pack --pack-destination ~",
"test": "vitest",
"prepare": "yarn build",
"size": "size-limit",
"analyzeMapper": "source-map-explorer 'dist/*.js'",
"version": "yarn changeset version",
"storybook": "start-storybook -p 6006 -s public",
"pretty-Component": "yarn prettier -w ./src/lib/**/*.{ts,tsx}",
"lib": "bash lib.sh",
"build-storybook": "build-storybook -s public",
"clean": "rimraf dist",
"publish": "npm run changeset publish --access=public"
},
"size-limit": [
{
"path": "dist/index.js",
"limit": "100 KB"
}
],
"devDependencies": {
"@babel/core": "^7.18.6",
"@changesets/cli": "^2.24.0",
"@size-limit/preset-small-lib": "^7.0.8",
"@storybook/addon-a11y": "^6.5.13",
"@storybook/addon-console": "^1.2.3",
"@storybook/addon-essentials": "^6.5.13",
"@storybook/addon-info": "^5.3.21",
"@storybook/addon-links": "^6.5.13",
"@storybook/addons": "^6.5.13",
"@storybook/preset-scss": "^1.0.3",
"@storybook/react": "^6.5.13",
"@storybook/testing-react": "^1.3.0",
"@testing-library/jest-dom": "^5.16.4",
"@testing-library/react": "^13.3.0",
"@testing-library/user-event": "^14.3.0",
"@types/jest-axe": "^3.5.4",
"@types/lodash.chunk": "^4.2.7",
"@types/lodash.debounce": "^4.0.7",
"@types/react": "^18.0.15",
"@types/react-dom": "^18.0.6",
"@types/react-transition-group": "^4.4.5",
"@vitejs/plugin-react": "^2.2.0",
"@vitest/coverage-c8": "^0.24.5",
"autoprefixer": "^10.4.13",
"babel-loader": "^8.2.5",
"depcheck": "^1.4.3",
"esbuild-sass-plugin": "^2.4.0",
"jest-axe": "^6.0.0",
"jest-css-modules": "^2.1.0",
"jsdom": "^20.0.2",
"postcss": "^8.4.19",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-icons": "^4.4.0",
"react-is": "^18.2.0",
"sass": "^1.53.0",
"sass-loader": "^13.1.0",
"size-limit": "^7.0.8",
"storybook-a11y-report": "^0.0.19",
"storybook-addon-sass-postcss": "^0.1.3",
"storybook-dark-mode": "^1.1.2",
"tailwindcss": "^3.2.4",
"tslib": "^2.4.0",
"tsup": "^6.3.0",
"typescript": "^4.7.4",
"vitest": "^0.24.5"
},
"peerDependencies": {
"react": ">=18",
"react-dom": ">=18"
},
"dependencies": {
"clsx": "^1.2.1",
"date-fns": "^2.29.3",
"lodash.chunk": "^4.2.0",
"lodash.debounce": "^4.0.8",
"react-transition-group": "^4.4.5"
}
}