-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
98 lines (98 loc) · 3.08 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
{
"name": "enhance-url",
"version": "1.0.0",
"description": "Enhance any url with inline menu options such as open in a new tab or preview in an iframe.",
"private": false,
"repository": {
"type": "git",
"url": "git+https://github.com/thanosdi/enhance-url.git"
},
"author": "ThanosDi",
"bugs": {
"url": "https://github.com/thanosdi/enhance-url/issues"
},
"main": "./dist/cjs/index.js",
"module": "./dist/esm/index.js",
"types": "./dist/esm/index.d.ts",
"files": [
"/dist"
],
"scripts": {
"start": "react-scripts start",
"prepack": "yarn build",
"build": "rollup -c rollup.config.js --environment BUILD:development",
"minify": "rollup -c rollup.config.js --environment BUILD:minify",
"test": "react-scripts test --watchAll=false",
"eject": "react-scripts eject"
},
"dependencies": {
"@emotion/react": "^11.8.2",
"@emotion/styled": "^11.8.1",
"@material-ui/system": "^4.12.1",
"@mui/icons-material": "^5.5.1",
"@mui/material": "^5.5.2",
"react-iframe": "^1.8.0",
"web-vitals": "^2.1.4"
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@rollup/plugin-commonjs": "^21.0.3",
"@rollup/plugin-node-resolve": "^13.1.3",
"@testing-library/jest-dom": "^5.16.3",
"@testing-library/react": "^12.1.4",
"@testing-library/user-event": "^13.5.0",
"@types/jest": "^27.4.1",
"@types/node": "^16.11.26",
"@types/react": "^17.0.43",
"@types/react-dom": "^17.0.14",
"@typescript-eslint/eslint-plugin": "^5.16.0",
"@typescript-eslint/parser": "^5.16.0",
"eslint": "^8.12.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.29.4",
"eslint-plugin-react-hooks": "^4.3.0",
"eslint-plugin-unicorn": "^41.0.1",
"husky": ">=6",
"lint-staged": "^12.3.7",
"node-sass": "^7.0.1",
"postcss": "^8.4.12",
"prettier": "^2.6.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-scripts": "5.0.0",
"rollup": "^2.70.1",
"rollup-plugin-buble": "^0.19.8",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-typescript": "^1.0.1",
"rollup-plugin-typescript2": "^0.31.2",
"rollup-plugin-uglify": "^6.0.4",
"source-map-explorer": "^2.5.2",
"typescript": "^4.6.3"
},
"lint-staged": {
"*.{js,ts,tsx}": "eslint --cache --fix"
},
"peerDependencies": {
"react": "^17.0.2",
"react-dom": "^17.0.2"
}
}