-
Notifications
You must be signed in to change notification settings - Fork 906
/
package.json
67 lines (67 loc) · 2.22 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
{
"private": true,
"workspaces": [
"packages/*"
],
"scripts": {
"prebuild": "yarn build:ts",
"build": "node ./scripts/build.js && yarn build:debugger",
"build:ts": "node ./scripts/buildTs.js",
"build:debugger": "yarn workspace @react-native-community/cli-debugger-ui build",
"build-clean": "rimraf ./packages/*/build",
"build-clean-all": "rimraf ./packages/*/build ./packages/*/tsconfig.tsbuildinfo",
"watch": "node ./scripts/watch.js",
"test": "jest",
"test:ci:unit": "jest packages --ci --coverage",
"test:ci:e2e": "jest e2e --ci -i",
"lint": "eslint --ext .js,.ts . --cache --report-unused-disable-directives",
"postinstall": "yarn build",
"link-packages": "node ./scripts/linkPackages.js",
"publish": "yarn build-clean-all && yarn install && lerna publish --force-publish",
"publish:next": "yarn build-clean-all && yarn install && lerna publish --force-publish --dist-tag next",
"prepare": "husky install"
},
"devDependencies": {
"@babel/core": "^7.0.0",
"@babel/eslint-parser": "^7.12.0",
"@babel/plugin-proposal-export-namespace-from": "^7.18.9",
"@babel/plugin-transform-modules-commonjs": "^7.2.0",
"@babel/preset-env": "^7.0.0",
"@babel/preset-typescript": "^7.3.3",
"@react-native-community/eslint-config": "^3.2.0",
"@types/glob": "^7.1.1",
"@types/jest": "^26.0.15",
"@types/node": "^18.0.0",
"babel-jest": "^26.6.2",
"babel-plugin-module-resolver": "^3.2.0",
"chalk": "^4.1.2",
"chokidar": "^3.3.1",
"eslint": "^8.23.1",
"eslint-import-resolver-alias": "^1.1.2",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-ft-flow": "^2.0.1",
"eslint-plugin-import": "^2.25.3",
"execa": "^5.0.0",
"fast-glob": "^3.3.2",
"husky": "^8.0.2",
"jest": "^26.6.2",
"jest-circus": "^26.6.2",
"jest-snapshot-serializer-raw": "^1.1.0",
"lerna": "^7.1.3",
"lint-staged": "^13.1.0",
"metro-memory-fs": "0.78.0",
"micromatch": "^4.0.4",
"prettier": "2.8.8",
"slash": "^3.0.0",
"string-length": "^2.0.0",
"typescript": "^5.2.0"
},
"resolutions": {
"@types/node": "^18.0.0"
},
"lint-staged": {
"./packages/**/*.ts": [
"yarn lint"
]
}
}