-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 1.02 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
{
"name": "react-safetynet",
"version": "0.1.0",
"description": "A useful error boundary component for React",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"repository": "https://github.com/marcoms/react-safetynet",
"author": "Marco Scannadinari <m@scannadinari.co.uk>",
"license": "MIT",
"private": false,
"scripts": {
"build": "webpack",
"watch": "webpack -w"
},
"devDependencies": {
"@babel/core": "^7.2.2",
"@types/node": "^10.12.21",
"@types/react": "^16.8.1",
"@types/react-dom": "^16.0.11",
"babel-core": "^6.26.3",
"babel-loader": "^8.0.5",
"babel-preset-env": "^1.7.0",
"babel-preset-react": "^6.24.1",
"css-loader": "^2.1.0",
"eslint": "^5.13.0",
"eslint-plugin-react": "^7.12.4",
"style-loader": "^0.23.1",
"ts-loader": "^5.3.3",
"typescript": "^3.3.1",
"webpack": "^4.29.0",
"webpack-cli": "^3.2.1"
},
"dependencies": {
"react": "^16.7.0",
"react-dom": "^16.7.0"
},
"resolutions": {
"terser": "3.14.1"
}
}