-
Notifications
You must be signed in to change notification settings - Fork 945
/
package.json
83 lines (83 loc) · 3.17 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
{
"name": "reactotron",
"private": true,
"workspaces": {
"packages": [
"apps/*",
"lib/*"
]
},
"author": {
"name": "Infinite Red",
"email": "[email protected]",
"url": "https://github.com/infinitered/reactotron"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/infinitered/reactotron/issues"
},
"repository": "https://github.com/infinitered/reactotron",
"keywords": [
"react",
"react native"
],
"homepage": "https://github.com/infinitered/reactotron#readme",
"engines": {
"node": ">=18.0.0"
},
"devDependencies": {
"@jscutlery/semver": "^2.30.1",
"@nx/devkit": "17.0.3",
"@octokit/rest": "^19.0.7",
"@types/eslint": "^8.44.4",
"@typescript-eslint/eslint-plugin": "^6.7.5",
"@typescript-eslint/parser": "^6.7.5",
"eslint": "^8.53.0",
"eslint-config-prettier": "^9.0.0",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-import": "^2.29.0",
"eslint-plugin-n": "^16.2.0",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-standard": "^5.0.0",
"nx": "17.0.3",
"prettier": "^3.0.3",
"typescript": "^5.1.3",
"zx": "^7.2.3"
},
"resolutions": {
"@nx/devkit": "17.0.3",
"@types/react": "18.2.45",
"electron-webpack": "patch:electron-webpack@npm%3A2.8.2#./.yarn/patches/electron-webpack-npm-2.8.2-1bda600605.patch",
"react-hotkeys": "patch:react-hotkeys@npm%3A2.0.0#./.yarn/patches/react-hotkeys-npm-2.0.0-8e6c50bd05.patch",
"webpack": "patch:webpack@npm%3A4.47.0#./.yarn/patches/webpack-npm-4.47.0-42e477a08c.patch"
},
"scripts": {
"postinstall": "sh ./scripts/postinstall.sh",
"clean": "sh ./scripts/clean.sh",
"reset": "sh ./scripts/reset.sh",
"generate:plugin": "zx scripts/generate-plugin.mjs",
"start": "yarn workspace reactotron-app start",
"start:example": "yarn workspace example-app start",
"build": "npx nx run-many --target build",
"build:watch": "npx nx watch --all -- npx nx run \\$NX_PROJECT_NAME:build",
"build:dev": "npx nx run-many --target build:dev",
"lint": "npx nx run-many --target lint",
"test": "npx nx run-many --target test",
"ci:test": "npx nx run-many --target ci:test",
"ci:trust": "sh ./scripts/git-clone-fork-to-trusted-branch.sh",
"typecheck": "npx nx run-many --target typecheck",
"format:write": "npx nx run-many --target format:write",
"format:check": "npx nx run-many --target format:check",
"release:tags": "npx nx affected --target version --base $CIRCLE_BRANCH~1 --head $CIRCLE_BRANCH --parallel=1",
"release:tags:local": "CIRCLE_BRANCH=$(git branch --show-current) yarn release:tags",
"release:artifacts": "zx scripts/release.artifacts.mjs",
"release:tags:push": "zx scripts/release.tags.push.mjs",
"copy-prettier-ignore": "zx scripts/copy-prettier-ignore.mjs",
"remove-local-tags": "git tag -l | xargs git tag -d && git fetch -t",
"build-and-test:local": "yarn build && yarn package:validate && yarn lint && yarn format:check && yarn test && yarn typecheck",
"package:validate": "zx scripts/package.validate.mjs"
},
"packageManager": "[email protected]"
}