forked from serity-ui/serity-ui
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
77 lines (77 loc) · 2.24 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
{
"name": "@serity-ui/react",
"version": "0.1.7",
"description": "React UI library that contains easy-to-use components.",
"main": "./dist/cjs/index.js",
"module": "./dist/esm/index.js",
"types": "./dist/esm/index.d.ts",
"author": "Edman Cota <edman-cota>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/serity-ui/serity-ui.git"
},
"files": [
"dist",
"LICENSE",
"README.md"
],
"keywords": [
"react",
"tooltip",
"typescript",
"custom"
],
"scripts": {
"build": "npm run build:esm && npm run build:cjs",
"build:esm": "tsc",
"build:cjs": "tsc --module commonjs --outDir dist/cjs",
"lint": "eslint \"{**/*,*}.{js,ts,jsx,tsx}\"",
"prettier": "prettier --write \"{src,tests,example/src}/**/*.{js,ts,jsx,tsx,stories.tsx}\"",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook"
},
"devDependencies": {
"@babel/core": "^7.19.6",
"@storybook/addon-actions": "^6.5.13",
"@storybook/addon-essentials": "^6.5.13",
"@storybook/addon-interactions": "^6.5.13",
"@storybook/addon-links": "^6.5.13",
"@storybook/builder-webpack4": "^6.5.13",
"@storybook/manager-webpack4": "^6.5.13",
"@storybook/react": "^6.5.13",
"@storybook/testing-library": "^0.0.13",
"@types/react": "^18.0.23",
"@types/react-dom": "^18.0.7",
"@types/styled-components": "^5.1.26",
"@typescript-eslint/eslint-plugin": "^5.41.0",
"@typescript-eslint/parser": "^5.41.0",
"babel-loader": "^8.2.5",
"eslint": "^8.26.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.31.10",
"eslint-plugin-react-hooks": "^4.6.0",
"prettier": "^2.7.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"tslib": "^2.4.0",
"typescript": "^4.8.4"
},
"dependencies": {
"@chakra-ui/react-use-safe-layout-effect": "^2.0.2",
"@mdx-js/react": "^2.1.5",
"csstype": "^3.1.1",
"styled-components": "^5.3.6"
},
"peerDependencies": {
"react": ">=16"
},
"bugs": {
"url": "https://github.com/serity-ui/serity-ui/issues"
},
"publishConfig": {
"access": "public"
},
"homepage": "https://github.com/serity-ui/serity-ui#readme"
}