forked from react-native-community/cli
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 1.97 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
{
"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",
"publish:next": "yarn build-clean-all && yarn install && lerna publish --dist-tag next"
},
"devDependencies": {
"@babel/core": "^7.0.0",
"@babel/plugin-transform-modules-commonjs": "^7.2.0",
"@babel/plugin-transform-runtime": "^7.6.2",
"@babel/preset-env": "^7.0.0",
"@babel/preset-typescript": "^7.3.3",
"@react-native-community/eslint-config": "^2.0.0",
"@types/glob": "^7.1.1",
"@types/jest": "^26.0.15",
"@types/node": "^14.0.0",
"@types/node-fetch": "^2.3.7",
"babel-jest": "^26.6.2",
"babel-plugin-module-resolver": "^3.2.0",
"chalk": "^4.1.2",
"chokidar": "^3.3.1",
"eslint": "^7.32.0",
"eslint-import-resolver-alias": "^1.1.2",
"eslint-import-resolver-typescript": "^2.5.0",
"eslint-plugin-import": "^2.25.3",
"execa": "^1.0.0",
"glob": "^7.1.3",
"jest": "^26.6.2",
"jest-circus": "^26.6.2",
"jest-snapshot-serializer-raw": "^1.1.0",
"lerna": "^4.0.0",
"metro-memory-fs": "^0.72.1",
"micromatch": "^4.0.4",
"rimraf": "^3.0.2",
"slash": "^3.0.0",
"string-length": "^2.0.0",
"typescript": "^3.8.0"
},
"resolutions": {
"@types/node": "^14.0.0"
}
}