-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
124 lines (124 loc) · 3.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
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
{
"name": "@eizyui/eizy-ui-react",
"version": "0.1.1",
"publishConfig": {
"access": "public"
},
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"types": "dist/esm/index.d.ts",
"_unpkg": true,
"unpkgFiles": [
"dist/index.css",
"dist/umd/*.js"
],
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^6.5.1",
"@fortawesome/free-solid-svg-icons": "^6.5.1",
"@fortawesome/react-fontawesome": "^0.2.0",
"@testing-library/jest-dom": "^5.17.0",
"@testing-library/react": "^13.4.0",
"@testing-library/user-event": "^13.5.0",
"axios": "^1.6.5",
"classnames": "^2.3.2",
"react-transition-group": "^4.4.5",
"resize-observer-polyfill": "^1.5.1",
"web-vitals": "^2.1.4"
},
"peerDependencies": {
"react": ">=16.8.0",
"react-dom": ">=16.8.0"
},
"scripts": {
"start": "react-scripts start",
"test": "react-scripts test",
"test:nowatch": "cross-env CI=true react-scripts test",
"eject": "react-scripts eject",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build",
"add": "node scripts/add.mjs",
"test hooks": "npm run test src/utils/hooks/test",
"clean": "rimraf ./dist",
"lint": "eslint --ext js,ts,tsx src",
"build-css": "sass ./src/styles/index.scss ./dist/index.css",
"build:esm": "tsc -p tsconfig.esm.json",
"build:cjs": "tsc -p tsconfig.cjs.json",
"build:umd": "webpack --config webpack.umd.config",
"build": "npm run clean && npm run build:esm && npm run build:cjs && npm run build:umd && npm run build-css",
"typeCheck": "tsc --noEmit",
"prepare": "husky",
"changelog": "auto-changelog -p",
"version":"git tag -a $npm_package_version -m \"Release version $npm_package_version\""
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest",
"plugin:storybook/recommended"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@storybook/addon-a11y": "^7.6.8",
"@storybook/addon-docs": "^7.6.8",
"@storybook/addon-essentials": "^7.6.8",
"@storybook/addon-interactions": "^7.6.8",
"@storybook/addon-links": "^7.6.8",
"@storybook/addon-onboarding": "^1.0.10",
"@storybook/blocks": "^7.6.8",
"@storybook/preset-create-react-app": "^7.6.8",
"@storybook/react": "^7.6.8",
"@storybook/react-webpack5": "^7.6.8",
"@storybook/test": "^7.6.8",
"@types/classnames": "^2.3.1",
"@types/jest": "^27.5.2",
"@types/node": "^16.18.68",
"@types/react": "^18.2.45",
"@types/react-dom": "^18.2.18",
"@types/react-transition-group": "^4.4.10",
"auto-changelog": "^2.4.0",
"babel-loader": "^9.1.3",
"chalk": "^5.3.0",
"cross-env": "^7.0.3",
"eslint-plugin-storybook": "^0.6.15",
"fs-extra": "^11.2.0",
"glob": "^10.3.10",
"handlebars": "^4.7.8",
"husky": "^9.0.11",
"prop-types": "^15.8.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-scripts": "5.0.1",
"rimraf": "^5.0.7",
"sass": "^1.69.5",
"storybook": "^7.6.8",
"ts-loader": "^9.5.1",
"typescript": "^4.9.5",
"webpack": "^5.89.0",
"webpack-bundle-analyzer": "^4.10.2",
"webpack-cli": "^5.1.4"
},
"jest": {
"transformIgnorePatterns": [
"node_modules/(?!axios)"
]
},
"auto-changelog": {
"commitLimit": false,
"template": "changelog-template.hbs",
"replaceText": {
"\\[(.*)\\]": "($1)"
}
}
}