-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
97 lines (97 loc) · 3.42 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
{
"name": "chakra-multi-modal",
"version": "1.0.1",
"description": "A Chakra UI Multi Modal - one modal with multiple, switchable sections",
"author": "Łukasz Rabiec <lukaszrabiec@gmail.com>",
"license": "MIT",
"homepage": "https://github.com/lucasrabiec/chakra-multi-modal#readme",
"keywords": ["chakra-ui", "multimodal", "modal", "react", "ui", "frontend"],
"repository": {
"type": "git",
"url": "git+https://github.com/lucasrabiec/chakra-multi-modal.git"
},
"bugs": {
"url": "https://github.com/lucasrabiec/chakra-multi-modal/issues"
},
"exports": {
".": {
"import": "./dist/esm/index.js",
"require": "./dist/cjs/index.js",
"types": "./dist/types/index.d.ts",
"default": "./dist/esm/index.js"
}
},
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"types": "dist/types/index.d.ts",
"files": ["dist"],
"scripts": {
"prepare": "husky install",
"preinstall": "pnpm -s dlx only-allow pnpm",
"build": "rimraf ./dist && concurrently pnpm:build:*",
"build:cjs": "cross-env BABEL_ENV=cjs babel src --extensions .ts,.tsx -d dist/cjs --source-maps",
"build:esm": "cross-env BABEL_ENV=esm babel src --extensions .ts,.tsx -d dist/esm --source-maps",
"build:types": "tsc --emitDeclarationOnly --declaration --declarationDir dist/types -p ./tsconfig.build.json",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook",
"typecheck": "tsc --noEmit",
"test": "jest",
"test:watch": "jest --watch",
"format:check": "prettier --check src",
"format:write": "prettier --write src",
"lint": "eslint src --ext .ts,.tsx --config .eslintrc.js",
"release": "release-it"
},
"peerDependencies": {
"@chakra-ui/button": "^2.0.0",
"@chakra-ui/modal": "^2.0.0",
"@emotion/react": "^11.8.1",
"react": "^18.0.0",
"react-dom": "^18.0.0"
},
"devDependencies": {
"@babel/cli": "^7.19.3",
"@babel/core": "^7.19.6",
"@babel/preset-env": "^7.19.4",
"@babel/preset-react": "^7.18.6",
"@babel/preset-typescript": "^7.18.6",
"@chakra-ui/babel-plugin": "1.0.8",
"@chakra-ui/react": "2.3.6",
"@chakra-ui/storybook-addon": "^4.0.12",
"@emotion/react": "^11.9.3",
"@storybook/addon-essentials": "^6.5.13",
"@storybook/addon-interactions": "^6.5.13",
"@storybook/addon-links": "^6.5.13",
"@storybook/builder-webpack5": "^6.5.13",
"@storybook/manager-webpack5": "^6.5.13",
"@storybook/preset-create-react-app": "^4.1.2",
"@storybook/react": "^6.5.13",
"@storybook/testing-library": "^0.0.13",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^13.4.0",
"@testing-library/user-event": "^14.4.3",
"@types/jest": "^29.2.0",
"@types/react": "^18.0.21",
"@types/testing-library__jest-dom": "^5.14.5",
"@typescript-eslint/eslint-plugin": "^5.38.1",
"@typescript-eslint/parser": "^5.38.1",
"concurrently": "^7.5.0",
"cross-env": "^7.0.3",
"eslint": "^8.24.0",
"eslint-config-prettier": "8.5.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-react": "^7.31.8",
"eslint-plugin-react-hooks": "^4.6.0",
"husky": "^8.0.0",
"jest": "^29.2.2",
"jest-environment-jsdom": "^29.2.2",
"lint-staged": "^13.0.3",
"prettier": "^2.7.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"release-it": "^15.5.0",
"rimraf": "^3.0.2",
"ts-jest": "^29.0.3",
"typescript": "^4.8.4"
}
}