-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
69 lines (69 loc) · 1.97 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
{
"name": "react-badly",
"version": "1.0.12",
"description": "Error boundary react component",
"main": "dist/index.js",
"module": "esm/index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 0",
"prepublishOnly": "npm run build",
"build": "rimraf dist esm && npm-run-all build:*",
"build:rollup": "rollup -c",
"watch": "rollup -c -w",
"prepare": "husky install"
},
"repository": {
"type": "git",
"url": "git+https://github.com/serveside/react-badly.git"
},
"keywords": [
"react",
"error",
"boundary"
],
"author": "Naftali Lubin <[email protected]>",
"license": "ISC",
"bugs": {
"url": "https://github.com/serveside/react-badly/issues"
},
"homepage": "https://github.com/serveside/react-badly#readme",
"lint-staged": {
"*.{js,jsx}": "eslint --cache --fix",
"*.{js,jsx,json,css,md}": "prettier --write"
},
"peerDependencies": {
"@babel/runtime-corejs3": "^7.17.9",
"core-js-pure": "^3.22.5",
"prop-types": ">=15",
"react": ">=16"
},
"devDependencies": {
"@babel/core": "^7.17.10",
"@babel/plugin-proposal-class-properties": "^7.16.7",
"@babel/plugin-transform-runtime": "^7.17.10",
"@babel/preset-env": "^7.17.10",
"@babel/preset-react": "^7.16.7",
"@babel/runtime-corejs3": "^7.17.9",
"@rollup/plugin-babel": "^6.0.0",
"@rollup/plugin-commonjs": "^28.0.0",
"@rollup/plugin-node-resolve": "^16.0.0",
"core-js-pure": "^3.22.5",
"eslint": "^9.0.0",
"eslint-plugin-react": "^7.29.4",
"husky": "^9.0.1",
"inquirer": "^12.0.0",
"lint-staged": "^15.0.1",
"prettier": "^3.0.0",
"prop-types": "^15.8.1",
"react": "^19.0.0",
"rimraf": "^6.0.0",
"rollup": "^4.22.4",
"rollup-plugin-filesize": "^10.0.0",
"rollup-plugin-license": "^3.0.0",
"rollup-plugin-node-externals": "^8.0.0",
"rollup-plugin-terser": "^7.0.2",
"semver": "^7.3.7",
"shelljs": "^0.8.5",
"yarn-run-all": "^3.1.1"
}
}