-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.42 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.42 KB
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
{
"name": "ry-error-wrapper",
"description": "Error wrapper for Rayyone React Projects",
"version": "1.0.0",
"author": "Rayyone Ltd.",
"keywords": [
"rayyone",
"axios",
"error handler",
"error wrapper",
"sentry",
"react",
"react js",
"react native"
],
"license": "MIT",
"repository": {
"url": "git+https://github.com/rayyone/error-wrapper-js.git",
"type": "git"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "tsc",
"prettier:write": "npx prettier --write **/*.{js,ts,tsx}",
"lint": "eslint ./src --ext .js,.jsx --fix",
"prepare": "yarn run build"
},
"dependencies": {
"@sentry/react": "^7.11.1",
"@types/node": "^18.7.5",
"axios": "^0.27.2",
"typescript": "^4.1.2"
},
"devDependencies": {
"@babel/preset-env": "^7.18.10",
"@babel/preset-typescript": "^7.15.0",
"@typescript-eslint/eslint-plugin": "^5.1.0",
"@typescript-eslint/parser": "^5.1.0",
"eslint-config-airbnb-typescript": "^14.0.1",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"prettier": "^2.4.1"
},
"bugs": {
"url": "https://github.com/rayyone/error-wrapper-js/issues"
},
"homepage": "https://github.com/rayyone/error-wrapper-js#readme",
"publishConfig": {
"access": "public"
},
"babel": {
"presets": [
"@babel/preset-env"
]
}
}