-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
80 lines (80 loc) · 2.07 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
{
"name": "@ma9pie/use-modal",
"version": "1.0.6",
"description": "React useModal hooks",
"keywords": [
"react",
"modal",
"usemodal",
"hooks"
],
"author": {
"name": "ma9pie",
"email": "[email protected]"
},
"repository": {
"type": "git",
"url": "https://github.com/ma9pie/use-modal"
},
"license": "MIT",
"publishConfig": {
"access": "public"
},
"main": "dist/index.js",
"module": "dist/index.esm.js",
"types": "dist/index.d.ts",
"files": [
"/dist"
],
"scripts": {
"prebuild": "rm -rf dist",
"build": "rollup -c",
"test": "jest",
"test:watch": "jest --watchAll",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build",
"patch": "npm version patch",
"minor": "npm version minor",
"major": "npm version major"
},
"peerDependencies": {
"react": ">=18",
"react-dom": ">=18"
},
"dependencies": {
"react": ">=18",
"react-dom": ">=18"
},
"devDependencies": {
"@emotion/css": "^11.11.2",
"@emotion/react": "^11.11.4",
"@emotion/styled": "^11.11.5",
"@rollup/plugin-babel": "^6.0.4",
"@rollup/plugin-commonjs": "^25.0.7",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-typescript": "^11.1.6",
"@storybook/addon-essentials": "^7.6.17",
"@storybook/addon-interactions": "^7.6.17",
"@storybook/addon-links": "^7.6.17",
"@storybook/nextjs": "^7.6.17",
"@storybook/react": "^7.6.17",
"@testing-library/jest-dom": "^6.4.2",
"@testing-library/react": "^14.2.1",
"@types/jest": "^29.5.12",
"@types/node": "^20.11.21",
"@types/react": "^18",
"babel-jest": "^29.7.0",
"eslint": "^8.57.0",
"eslint-config-next": "^14.1.2",
"eslint-plugin-simple-import-sort": "^12.0.0",
"eslint-plugin-storybook": "^0.8.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"rollup": "^2.79.1",
"rollup-plugin-peer-deps-external": "^2.2.4",
"rollup-plugin-tsc-alias": "^1.1.2",
"storybook": "^7.6.17",
"ts-jest": "^29.1.2",
"typescript": "^4.9.5"
}
}