forked from callstack/reassure
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
63 lines (63 loc) · 1.94 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
{
"name": "reassure-root",
"private": true,
"version": "0.0.0",
"description": "Performance testing companion for React and React Native",
"scripts": {
"postinstall": "yarn build",
"test": "turbo run test",
"test:test-app": "cd ./test-apps/native && yarn test",
"typecheck": "tsc --noEmit",
"typecheck:test-app": "yarn --cwd ./test-apps/native typecheck",
"lint": "eslint \"**/*.{js,ts,tsx}\"",
"lint:deps": "yarn check-dependency-version-consistency .",
"clean": "turbo run clean",
"build": "turbo run build",
"changeset": "changeset",
"version": "changeset version",
"publish": "yarn build && changeset publish",
"danger:local": "danger local -b main"
},
"keywords": [
"react-native",
"ios",
"android"
],
"repository": "https://github.com/callstack/reassure",
"author": "Maciej Jastrzębski <[email protected]> (https://github.com/mdjastrzebski)",
"contributors": [
"Jakub Bujko <[email protected]> (https://github.com/Xiltyn)",
"Tomasz Krzyżowski <[email protected]> (https://github.com/TMaszko)",
"Michał Pierzchała <[email protected]> (https://github.com/thymikee)"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/callstack/reassure/issues"
},
"homepage": "https://github.com/callstack/reassure#readme",
"devDependencies": {
"@callstack/eslint-config": "^15.0.0",
"@changesets/cli": "^2.27.8",
"check-dependency-version-consistency": "^4.1.0",
"danger": "^12.3.3",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-flowtype": "^8.0.3",
"eslint-plugin-prettier": "^4.2.1",
"prettier": "^2.8.8",
"reassure": "workspace:^",
"turbo": "^2.1.1",
"typescript": "^5.5.4"
},
"eslintIgnore": [
"node_modules/",
"lib/"
],
"workspaces": {
"packages": [
"packages/*",
"test-apps/native"
]
},
"packageManager": "[email protected]"
}