-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
106 lines (106 loc) · 2.72 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
{
"name": "react-a-gate",
"description": "A React library made with Portals for modals, tooltips and popovers",
"version": "1.5.1",
"private": false,
"main": "dist/index.js",
"repository": {
"type": "git",
"url": "https://github.com/bonavida/react-a-gate"
},
"author": "Diego Bonavida <gecko.bona@gmail.com>",
"license": "MIT",
"tags": [
"react"
],
"keywords": [
"react",
"portal",
"portals",
"react-portal",
"gate",
"modal",
"tooltip",
"popover",
"typescript",
"rollup"
],
"scripts": {
"lint": "eslint ./**/*.{ts,tsx,js,jsx}",
"lint:fix": "eslint --fix ./**/*.{ts,tsx,js,jsx}",
"prettify": "prettier --config ./.prettierrc.json --write \"./**/*.{ts,tsx,js,jsx}\"",
"prebuild": "rimraf dist",
"build": "rollup -c",
"start": "rollup -c -w",
"test": "jest --config ./jest.config.js",
"test:watch": "jest --config ./jest.config.js --watch",
"prepublishOnly": "npm run build"
},
"peerDependencies": {
"react": "^16.14.0",
"react-dom": "^16.14.0"
},
"devDependencies": {
"@testing-library/jest-dom": "^4.2.4",
"@testing-library/react": "^9.5.0",
"@testing-library/user-event": "^7.2.1",
"@types/jest": "^24.9.1",
"@types/node": "^12.20.8",
"@types/react": "^16.14.5",
"@types/react-dom": "^16.9.12",
"@types/resize-observer-browser": "^0.1.5",
"@typescript-eslint/eslint-plugin": "^4.22.0",
"@typescript-eslint/parser": "^4.22.0",
"autoprefixer": "^10.2.5",
"babel-core": "^6.26.3",
"babel-runtime": "^6.26.0",
"eslint": "^7.24.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-config-prettier": "^6.15.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-prettier": "^3.3.1",
"eslint-plugin-react": "^7.23.2",
"eslint-plugin-react-hooks": "^4.2.0",
"husky": "^4.3.8",
"identity-obj-proxy": "^3.0.0",
"jest": "^26.6.3",
"node-sass": "^4.14.1",
"postcss": "^8.2.10",
"prettier": "^2.2.1",
"react": "^16.14.0",
"react-dom": "^16.14.0",
"rimraf": "^3.0.2",
"rollup": "^2.45.2",
"rollup-plugin-includepaths": "^0.2.4",
"rollup-plugin-sass": "^1.2.2",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-typescript2": "^0.27.3",
"ts-jest": "^26.5.4",
"typescript": "^3.9.9"
},
"files": [
"dist"
],
"eslintConfig": {
"extends": "react-app"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"dependencies": {},
"husky": {
"hooks": {
"pre-push": "npm run lint"
}
}
}