-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
87 lines (87 loc) · 2.03 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
{
"name": "@appklaar/codebud",
"version": "1.0.0",
"private": false,
"description": "CodeBud - AppKlaar's package for remote app testing & debugging",
"main": "index.ts",
"scripts": {
"test": "jest",
"start": "ts-node index.ts",
"build": "tsc --build tsconfig.build.json",
"clean": "tsc --build --clean"
},
"author": "Aleksandr Nikolotov",
"keywords": [
"codebud",
"debugging",
"testing",
"react",
"react-native",
"redux",
"network",
"interceptors",
"http",
"monitor",
"zustand",
"tanstack-query"
],
"dependencies": {
"@mswjs/interceptors": "^0.22.7",
"apisauce": "^2.1.6",
"moment": "^2.29.4",
"socket.io-client": "^4.5.4",
"stacktracey": "^2.1.8"
},
"devDependencies": {
"@babel/cli": "^7.17.10",
"@babel/core": "^7.18.2",
"@babel/preset-env": "^7.18.2",
"@babel/preset-typescript": "^7.21.0",
"@babel/runtime": "^7.18.3",
"@types/node": "^18.15.3",
"@types/react": "^18.0.28",
"@typescript-eslint/eslint-plugin": "^5.55.0",
"@typescript-eslint/parser": "^5.55.0",
"babel-jest": "^29.7.0",
"jest": "^29.7.0",
"react": "^18.2.0",
"react-native": "^0.72.3",
"ts-node": "^10.9.1",
"tweetnacl": "^1.0.3",
"tweetnacl-util": "^0.15.1",
"typescript": "^4.9.5"
},
"peerDependencies": {
"react": "*",
"react-native": "*",
"tweetnacl": "^1.0.3",
"tweetnacl-util": "^0.15.1"
},
"peerDependenciesMeta": {
"react": {
"optional": true
},
"react-native": {
"optional": true
},
"tweetnacl": {
"optional": true
},
"tweetnacl-util": {
"optional": true
}
},
"resolutions": {
"**/@typescript-eslint/eslint-plugin": "5.27.1",
"**/@typescript-eslint/parser": "5.27.1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Appklaar/CodeBud.git"
},
"license": "ISC",
"bugs": {
"url": "https://github.com/Appklaar/CodeBud/issues"
},
"homepage": "https://github.com/Appklaar/CodeBud#readme"
}