-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
105 lines (105 loc) · 2.67 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
{
"name": "@rsuite/interactions",
"version": "2.0.0",
"description": "Call rsuite Modal at ease.",
"main": "cjs/index.js",
"module": "esm/index.js",
"types": "index.d.ts",
"scripts": {
"dev": "vite demo",
"build": "rollup --config",
"docs": "vite build",
"publish-docs": "node docs/gh-pages.js",
"test": "jest",
"prepublishOnly": "npm run build && npm test",
"semantic-release": "semantic-release"
},
"repository": {
"type": "git",
"url": "https://github.com/rsuite/interactions.git"
},
"files": [
"cjs",
"esm",
"src",
"*.d.ts",
"!**/__tests__"
],
"keywords": [
"react",
"rsuite",
"react-components",
"modal",
"dialog",
"alertdialog",
"interaction",
"alert",
"confirm",
"prompt"
],
"author": "Doma<[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/rsuite/interactions/issues"
},
"homepage": "https://github.com/rsuite/interactions#readme",
"peerDependencies": {
"react": ">=16.8.0",
"react-dom": ">=16.8.0",
"rsuite": "^4.0.0 || ^5.0.1"
},
"devDependencies": {
"@babel/core": "^7.15.8",
"@babel/preset-env": "^7.15.8",
"@babel/preset-react": "^7.14.5",
"@rollup/plugin-babel": "^5.3.0",
"@rollup/plugin-commonjs": "^21.0.0",
"@rollup/plugin-node-resolve": "^13.0.5",
"@testing-library/jest-dom": "^5.14.1",
"@testing-library/react": "^11.0.4",
"@testing-library/user-event": "^12.1.7",
"babel-eslint": "^9.0.0",
"date-fns2": "npm:date-fns@^2.19.0",
"eslint": "^7.11.0",
"eslint-config-airbnb": "^18.2.0",
"eslint-config-prettier": "^6.12.0",
"eslint-plugin-babel": "^5.3.1",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jest": "^24.1.0",
"eslint-plugin-json": "^2.1.2",
"eslint-plugin-jsx-a11y": "^6.3.1",
"eslint-plugin-react": "^7.21.4",
"eslint-plugin-react-hooks": "^4.1.2",
"gh-pages": "^2.0.1",
"husky": "^4.3.0",
"jest": "^26.5.2",
"lint-staged": "^10.4.0",
"prettier": "^2.1.2",
"react": "^16.8.0",
"react-dom": "^16.8.0",
"react-dom16": "npm:react-dom@^16.8.0",
"react-dom17": "npm:react-dom@^17.0.2",
"react16": "npm:react@^16.8.0",
"react17": "npm:react@^17.0.2",
"rollup": "^2.58.0",
"rsuite": "^5.0.1",
"rsuite4": "npm:rsuite@^4.10.3",
"rsuite5": "npm:rsuite@^5.0.1",
"semantic-release": "^19.0.3",
"vite": "^2.6.5"
},
"browserslist": [
"> 1%",
"last 2 versions",
"not ie < 10"
],
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"**/*.js": "eslint --cache --fix",
"**/*": "prettier --write --ignore-unknown"
}
}