-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
65 lines (65 loc) · 1.61 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
{
"name": "@bugsplat/react",
"version": "1.0.3",
"description": "bugsplat utilities for react",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": "./dist/index.js"
},
"files": [
"dist",
"src"
],
"private": false,
"publishConfig": {
"access": "public"
},
"workspaces": [
"examples/*"
],
"scripts": {
"test": "npm run test:unit",
"test:integration": "jest --selectProjects integration",
"test:unit": "jest --selectProjects unit",
"test:all": "jest",
"build": "rimraf dist && tsc -p tsconfig.build.json",
"build:examples": "npm run build -w examples/",
"prepare": "npm run build",
"format": "prettier --write src/",
"start:my-react-crasher": "npm run -w my-react-crasher start"
},
"keywords": [
"bugsplat",
"react"
],
"author": "zmrl",
"license": "MIT",
"dependencies": {
"bugsplat": "^8.0.1"
},
"devDependencies": {
"@bugsplat/js-api-client": "^2.0.0",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^13.3.0",
"@types/jest": "^28.1.8",
"@types/react": "^18.0.18",
"@types/react-dom": "^18.0.6",
"@typescript-eslint/eslint-plugin": "^5.36.1",
"@typescript-eslint/parser": "^5.36.1",
"dotenv": "^16.0.2",
"eslint": "^8.23.0",
"eslint-plugin-react": "^7.31.1",
"eslint-plugin-react-hooks": "^4.6.0",
"jest": "^28.1.3",
"jest-environment-jsdom": "^28.1.3",
"prettier": "^2.7.1",
"rimraf": "^3.0.2",
"ts-jest": "^28.0.8",
"typescript": "^4.8.2"
},
"peerDependencies": {
"react": "^18.2.0",
"react-dom": "^18.2.0"
}
}