forked from facebook/metro
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
75 lines (75 loc) · 2.53 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
{
"private": true,
"devDependencies": {
"@babel/core": "^7.14.0",
"@babel/plugin-proposal-nullish-coalescing-operator": "^7.0.0",
"@babel/plugin-proposal-optional-chaining": "^7.0.0",
"@babel/plugin-syntax-class-properties": "^7.0.0",
"@babel/plugin-transform-flow-strip-types": "^7.0.0",
"@babel/plugin-transform-modules-commonjs": "^7.0.0",
"acorn": "^5.1.2",
"babel-eslint": "^10.1.0",
"babel-jest": "^26.6.3",
"chalk": "^4.0.0",
"codecov": "^3.6.5",
"debug": "^2.2.0",
"eslint": "^7.32.0",
"eslint-config-fb-strict": "^26.0.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-babel": "^5.3.1",
"eslint-plugin-flowtype": "^7.0.0",
"eslint-plugin-import": "^2.9.0",
"eslint-plugin-jest": "^25.2.4",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-lint": "1.0.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.26.1",
"eslint-plugin-relay": "^1.8.2",
"flow-bin": "^0.178.0",
"glob": "^7.1.1",
"istanbul-api": "3.0.0",
"istanbul-lib-coverage": "3.0.0",
"jest": "^26.6.3",
"lerna": "2.4.0",
"micromatch": "^4.0.4",
"prettier": "^2.4.1",
"progress": "^2.0.0",
"promise": "^8.0.3",
"temp": "^0.8.3"
},
"scripts": {
"build-clean": "rm -rf ./packages/*/build",
"build": "node ./scripts/build.js",
"clean-all": "rm -rf ./node_modules && rm -rf ./packages/*/node_modules && yarn run build-clean",
"jest-coverage": "yarn run jest --coverage",
"lint": "eslint . --cache",
"lint-fix": "eslint . --fix --cache",
"postinstall": "node ./scripts/build.js",
"preinstall": "node ./scripts/preinstall.js",
"publish": "yarn run build-clean && yarn run build && lerna run prepare-release && lerna exec -- npm publish",
"postpublish": "lerna run cleanup-release",
"test-ci": "yarn run typecheck && yarn run lint && yarn run build && yarn run jest-coverage -i && node scripts/mapCoverage.js && codecov",
"test": "yarn run typecheck && yarn run lint && yarn run build && yarn run jest",
"typecheck": "flow check",
"update-version": "node ./scripts/updateVersion"
},
"workspaces": [
"packages/*"
],
"jest": {
"modulePathIgnorePatterns": [
"packages/[^/]+/build/"
],
"testEnvironment": "node",
"testRegex": "/__tests__/.*-test\\.js$",
"timers": "fake",
"transform": {
"\\.js$": "<rootDir>/scripts/babelJestTransformer.js"
},
"setupFiles": [
"<rootDir>/scripts/setupJest.js"
]
},
"license": "MIT",
"dependencies": {}
}