This repository has been archived by the owner on Feb 18, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
101 lines (101 loc) · 3.25 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
{
"name": "sentry-react-lazy",
"version": "0.1.6",
"description": "Load sentry monitoring system lazily on react appications",
"main": "dist/index.cjs.js",
"module": "dist/index.esm.js",
"typings": "dist/index.d.ts",
"files": [
"dist/*"
],
"homepage": "http://Valerioageno.github.io/sentry-react-lazy",
"repository": "https://github.com/Valerioageno/sentry-react-lazy",
"author": "V. Ageno <[email protected]>",
"license": "MIT",
"scripts": {
"build": "rollup -c",
"build-watch": "rollup -c -w",
"start-playground-js": "cd playground && npm run start",
"start-playground-ts": "cd playground-ts && npm run start",
"i-all": "npm i && cd playground && npm i && cd ../playground-ts && npm i",
"dev": "npm-run-all --parallel build-watch start-playground-js",
"dev-ts": "npm-run-all --parallel build-watch start-playground-ts",
"depcheck": "depcheck",
"test": "jest",
"test:watch": "jest --watch",
"type-check": "tsc --pretty --noEmit",
"markdownlint": "markdownlint-cli2 '**/*.md' '#**/node_modules' '#CHANGELOG.md'",
"lint": "eslint --ignore-path .gitignore \"src/**/*.+(ts|js|tsx)\"",
"fmt": "prettier --ignore-path .gitignore \"(src|playground|playground-ts|__tests__)/**/*.+(ts|js|tsx)\" --write",
"fmt:check": "prettier --check --ignore-path .gitignore \"(src|playground|playground-ts|__tests__)/**/*.+(ts|js|tsx)\"",
"prepare": "husky install",
"predeploy": "npm run build && cd playground && npm run build",
"deploy": "gh-pages -d ./playground/build"
},
"keywords": [
"react",
"sentry",
"monitoring",
"lazy"
],
"jest": {
"verbose": true,
"testEnvironment": "jest-environment-jsdom",
"testPathIgnorePatterns": [
"/node_modules/",
"/playground/",
"/playground-ts/"
],
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"setupFilesAfterEnv": [
"@testing-library/jest-dom/extend-expect"
],
"testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.tsx?$",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node"
]
},
"peerDependencies": {
"react": ">=17.0.2",
"react-dom": ">=17.0.2"
},
"devDependencies": {
"@babel/preset-env": "^7.16.8",
"@babel/preset-typescript": "^7.16.7",
"@sentry/types": "^6.16.1",
"@testing-library/jest-dom": "^5.16.1",
"@testing-library/react": "^12.1.2",
"@types/jest": "^27.4.0",
"@types/react": "^17.0.37",
"@typescript-eslint/eslint-plugin": "^5.9.1",
"@typescript-eslint/parser": "^5.9.1",
"depcheck": "^1.4.3",
"eslint": "^8.3.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-airbnb-typescript": "^16.0.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.25.3",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.27.1",
"eslint-plugin-react-hooks": "^4.3.0",
"eslint-plugin-unused-imports": "^2.0.0",
"gh-pages": "^3.2.3",
"husky": "^7.0.0",
"jest": "^27.4.7",
"markdownlint-cli2": "^0.3.2",
"npm-run-all": "^4.1.5",
"prettier": "^2.5.0",
"rollup": "^2.60.2",
"rollup-plugin-delete": "^2.0.0",
"rollup-plugin-typescript2": "^0.31.1",
"ts-jest": "^27.1.3",
"typescript": "^4.5.2"
}
}