forked from callstack/reassure
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
77 lines (77 loc) · 2.3 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
{
"name": "reassure-root",
"private": true,
"version": "0.0.1",
"description": "Performance testing companion for React and React Native",
"source": "src/index",
"scripts": {
"postinstall": "yarn build",
"test": "jest",
"test:example": "cd ./examples/native && yarn test",
"typescript": "tsc --noEmit",
"typescript:example": "cd ./examples/native && yarn typescript",
"lint": "eslint \"**/*.{js,ts,tsx}\"",
"lint:example": "cd ./examples/native && yarn lint",
"pods": "cd examples/native && pod-install --quiet",
"build": "turbo run build",
"changeset": "changeset",
"version": "changeset version",
"publish": "yarn build && changeset publish"
},
"keywords": [
"react-native",
"ios",
"android"
],
"repository": "https://github.com/callstack/reassure",
"author": "Maciej Jastrzębski <mdjastrzebski@gmail.com> (https://github.com/mdjastrzebski)",
"contributors": [
"Jakub Bujko <jakub.bujko@callstack.com> (https://github.com/Xiltyn)",
"Tomasz Krzyżowski <tomasz.krzyzowski@callstack.com> (https://github.com/TMaszko)",
"Michał Pierzchała <thymikee@gmail.com> (https://github.com/thymikee)"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/callstack/reassure/issues"
},
"homepage": "https://github.com/callstack/reassure#readme",
"devDependencies": {
"@babel/core": "^7.20.7",
"@babel/runtime": "^7.20.7",
"@callstack/eslint-config": "^13.0.2",
"@changesets/cli": "^2.26.0",
"@testing-library/react": "^13.4.0",
"@testing-library/react-native": "^11.5.0",
"@types/jest": "^29.2.5",
"@types/react": "^18.0.26",
"@types/react-native": "0.70.8",
"babel-jest": "^29.3.1",
"danger": "^11.2.0",
"eslint": "^8.31.0",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-prettier": "^4.2.1",
"jest": "^29.3.1",
"pod-install": "^0.1.38",
"prettier": "^2.8.3",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-native": "0.70.6",
"react-native-builder-bob": "^0.20.3",
"react-test-renderer": "^18.2.0",
"turbo": "^1.6.3",
"typescript": "^4.9.4"
},
"peerDependencies": {
"react": "*"
},
"eslintIgnore": [
"node_modules/",
"lib/"
],
"workspaces": {
"packages": [
"packages/*",
"examples/native"
]
}
}