-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
140 lines (140 loc) · 4.13 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
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
{
"name": "react-basics",
"version": "0.125.0",
"description": "Everyday components for React",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/umami-software/react-basics.git"
},
"homepage": "https://umami-software.github.io/react-basics",
"browserslist": [
"> 0.25%",
"not dead"
],
"engines": {
"node": ">= 14"
},
"keywords": [
"react",
"components"
],
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"publishConfig": {
"access": "public"
},
"scripts": {
"start": "storybook dev",
"build": "rollup -c",
"types": "tsc && tsc-alias",
"test": "jest",
"predeploy": "npm run build-storybook",
"deploy-storybook": "gh-pages -d storybook-static",
"build-storybook": "storybook build",
"check-types": "tsc",
"lint": "eslint src --ext .ts,.tsx"
},
"lint-staged": {
"src/**/*.{js,jsx,ts,tsx}": [
"prettier --write"
],
"src/**/*.{css}": [
"stylelint --fix",
"prettier --write"
]
},
"peerDependencies": {
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"dependencies": {
"@react-spring/web": "^9.7.3",
"classnames": "^2.3.1",
"date-fns": "^2.29.3",
"react-hook-form": "^7.34.2",
"react-window": "^1.8.6"
},
"devDependencies": {
"@babel/core": "^7.13.14",
"@babel/plugin-proposal-class-properties": "^7.13.0",
"@babel/plugin-proposal-export-default-from": "^7.12.13",
"@babel/plugin-proposal-nullish-coalescing-operator": "^7.13.8",
"@babel/plugin-proposal-object-rest-spread": "^7.13.8",
"@babel/plugin-proposal-optional-chaining": "^7.13.12",
"@babel/plugin-transform-runtime": "^7.15.0",
"@babel/preset-env": "^7.15.6",
"@babel/preset-react": "^7.14.5",
"@babel/preset-typescript": "^7.15.0",
"@faker-js/faker": "^7.5.0",
"@mdx-js/react": "^3.0.0",
"@mdx-js/rollup": "^3.0.0",
"@rollup/plugin-alias": "^4.0.3",
"@rollup/plugin-commonjs": "^24.0.1",
"@rollup/plugin-node-resolve": "^15.0.1",
"@storybook/addon-actions": "^7.0.18",
"@storybook/addon-essentials": "^7.0.18",
"@storybook/addon-interactions": "^7.0.18",
"@storybook/addon-links": "^7.0.18",
"@storybook/addons": "^7.0.18",
"@storybook/cli": "^7.0.18",
"@storybook/react": "^7.0.18",
"@storybook/react-webpack5": "7.0.18",
"@storybook/testing-library": "^0.1.0",
"@svgr/rollup": "^6.3.1",
"@svgr/webpack": "^6.2.1",
"@testing-library/react": "^12.1.1",
"@types/node": "^18.11.9",
"@types/react": "^18.2.41",
"@types/react-dom": "^18.2.17",
"@typescript-eslint/eslint-plugin": "^5.17.0",
"@typescript-eslint/parser": "^5.17.0",
"babel-jest": "^27.2.4",
"babel-loader": "^8.3.0",
"cross-env": "^7.0.3",
"dotenv": "^10.0.0",
"dotenv-cli": "^4.0.0",
"esbuild": "^0.17.5",
"eslint": "^7.23.0",
"eslint-config-prettier": "^8.1.0",
"eslint-plugin-css-modules": "^2.11.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jest": "^24.3.4",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-promise": "^5.1.0",
"eslint-plugin-react": "^7.23.1",
"eslint-plugin-react-hooks": "^4.2.0",
"eslint-plugin-storybook": "^0.6.12",
"gh-pages": "^3.2.3",
"husky": "^7.0.4",
"jest": "^27.2.4",
"lint-staged": "^11.1.2",
"npm-run-all": "^4.1.5",
"postcss": "^8.4.19",
"prettier": "^2.2.1",
"prettier-eslint": "^13.0.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-hot-loader": "^4.13.1",
"react-test-renderer": "^17.0.2",
"rollup": "^2.79.0",
"rollup-plugin-delete": "^2.0.0",
"rollup-plugin-dts": "^5.1.1",
"rollup-plugin-esbuild": "^6.1.0",
"rollup-plugin-postcss": "^4.0.2",
"storybook": "7.0.18",
"storybook-css-modules": "^1.0.8",
"style-loader": "^3.3.1",
"stylelint": "^13.12.0",
"stylelint-config-css-modules": "^2.2.0",
"stylelint-config-prettier": "^8.0.2",
"stylelint-config-recommended": "^5.0.0",
"tsc-alias": "^1.8.2",
"tsconfig-paths-webpack-plugin": "^4.0.1",
"typescript": "^4.7.4"
}
}