-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
106 lines (106 loc) · 2.8 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
102
103
104
105
106
{
"name": "@mutualmobile/react-native-barricade",
"version": "1.0.0",
"description": "A local server configurable at runtime to develop, test, and prototype your React Native app. Using just mock responses, Barricade can build the whole app without getting blocked by the unavailability of APIs.",
"homepage": "https://github.com/mutualmobile/react-native-barricade#readme",
"main": "lib/index.js",
"react-native": "src/index.tsx",
"types": "lib/index.d.ts",
"source": "src/index.tsx",
"author": "Prajna Boloor <prajna.boloor@mutualmobile.com>",
"license": "MIT",
"files": [
"lib",
"src",
"!docs",
"!.vscode",
"!example",
"!**/__tests__",
"!**/*.spec.ts",
"!**/*.spec.tsx",
"!**/__fixtures__",
"!**/__mocks__"
],
"keywords": [
"react-native",
"react",
"mobile",
"ios",
"android",
"http",
"interceptor",
"mock api",
"mock",
"network",
"pretender",
"prototype",
"server",
"testing"
],
"scripts": {
"compile": "rm -rf lib && tsc -p .",
"lint": "eslint .",
"prettier-check": "prettier src --check",
"prettier-format": "prettier src --write",
"prepare": "yarn compile && husky install",
"test": "jest",
"test-coverage": "jest --coverage"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"eslint --cache --fix",
"prettier --write"
]
},
"devDependencies": {
"@babel/core": "^7.20.0",
"@babel/preset-env": "^7.20.0",
"@babel/runtime": "^7.20.0",
"@react-native-community/eslint-config": "^3.2.0",
"@types/jest": "^29.2.1",
"@types/lodash.clonedeep": "^4.5.7",
"@types/react-native": "^0.71.1",
"@types/react-test-renderer": "^18.0.0",
"@types/url-parse": "^1.4.8",
"@typescript-eslint/eslint-plugin": "^5.50.0",
"@typescript-eslint/parser": "^5.50.0",
"babel-jest": "^29.2.1",
"eslint": "^8.19.0",
"eslint-plugin-ft-flow": "^2.0.3",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-simple-import-sort": "^10.0.0",
"husky": "^8.0.3",
"jest": "^29.2.1",
"jest-environment-jsdom": "^29.4.1",
"lint-staged": "^13.1.0",
"metro-react-native-babel-preset": "0.73.7",
"prettier": "^2.8.3",
"react": "18.2.0",
"react-native": "0.71.1",
"react-test-renderer": "18.2.0",
"typescript": "^4.8.4"
},
"peerDependencies": {
"react": "*",
"react-native": "*"
},
"dependencies": {
"lodash.clonedeep": "^4.5.0",
"url-parse": "^1.5.10"
},
"directories": {
"doc": "docs",
"example": "example",
"lib": "lib"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mutualmobile/react-native-barricade.git"
},
"bugs": {
"url": "https://github.com/mutualmobile/react-native-barricade/issues"
},
"publishConfig": {
"access": "public"
}
}