-
Notifications
You must be signed in to change notification settings - Fork 676
Expand file tree
/
Copy pathpackage.json
More file actions
81 lines (81 loc) · 3.08 KB
/
package.json
File metadata and controls
81 lines (81 loc) · 3.08 KB
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
{
"name": "@metro/monorepo",
"version": "0.0.0",
"private": true,
"devDependencies": {
"@babel/core": "^7.25.2",
"@babel/plugin-syntax-class-properties": "^7.12.13",
"@babel/plugin-transform-flow-strip-types": "^7.25.2",
"@babel/plugin-transform-modules-commonjs": "^7.24.8",
"@babel/plugin-transform-react-jsx": "^7.25.2",
"@babel/types": "^7.29.0",
"@tsconfig/node20": "^20.1.4",
"@typescript-eslint/eslint-plugin": "^8.36.0",
"@typescript-eslint/parser": "^8.36.0",
"acorn": "^8.7.1",
"babel-jest": "^29.7.0",
"babel-plugin-syntax-hermes-parser": "0.34.0",
"babel-plugin-transform-flow-enums": "^0.0.2",
"chalk": "^4.0.0",
"debug": "^4.4.0",
"eslint": "^8.57.0",
"eslint-config-fb-strict": "^27.0.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-babel": "^5.3.1",
"eslint-plugin-ft-flow": "^2.0.1",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-jest": "^29.0.1",
"eslint-plugin-jsx-a11y": "^6.6.0",
"eslint-plugin-lint": "^1.0.0",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-relay": "^1.8.3",
"flow-api-translator": "0.34.0",
"flow-bin": "^0.305.1",
"hermes-eslint": "0.34.0",
"invariant": "^2.2.4",
"istanbul-api": "3.0.0",
"istanbul-lib-coverage": "3.0.0",
"jest": "^29.7.0",
"jest-junit": "^16.0.0",
"jest-watch-typeahead": "^2.2.0",
"jsonc-eslint-parser": "^2.3.0",
"metro-babel-register": "*",
"micromatch": "^4.0.4",
"prettier": "3.6.2",
"prettier-plugin-hermes-parser": "0.34.1",
"progress": "^2.0.0",
"signedsource": "^2.0.0",
"tinyglobby": "^0.2.15",
"typescript": "5.8.3"
},
"scripts": {
"build-clean": "rm -rf ./packages/*/build",
"build": "node ./scripts/build.js",
"build-ts-defs": "node -r @babel/register ./scripts/generateTypeScriptDefinitions.js",
"clean-all": "rm -rf ./node_modules && rm -rf ./packages/*/node_modules && yarn run build-clean",
"lint-fix": "eslint . --fix --cache && prettier --write .",
"lint": "eslint . --cache && prettier --check .",
"postpublish": "npm run cleanup-release --workspaces --if-present",
"publish": "yarn run build-clean && yarn run build && npm run prepare-release --workspaces --if-present && npm publish --workspaces",
"start": "node packages/metro/src/cli",
"test": "yarn run typecheck && yarn run lint && yarn run build && yarn run jest",
"test-coverage": "yarn run build && yarn run jest --coverage -i && node scripts/mapCoverage.js",
"test-smoke": "yarn start build --config packages/metro/src/integration_tests/metro.config.js TestBundle.js --out /tmp/TestBundle",
"typecheck": "flow check",
"typecheck-ts": "tsc --project tsconfig.json",
"update-babel-flow-lib-defs": "node -r @babel/register ./scripts/updateBabelFlowLibraryDefinitions",
"update-version": "node ./scripts/updateVersion"
},
"workspaces": [
"packages/*",
"private/*"
],
"license": "MIT",
"dependencies": {},
"engines": {
"node": "^20.19.4 || ^22.13.0 || ^24.3.0 || >= 25.0.0"
},
"resolutions": {
"**/json5": "2.2.3"
}
}