forked from facebook/metro
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
84 lines (84 loc) · 2.96 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
84
{
"private": true,
"devDependencies": {
"@babel/core": "^7.0.0",
"@babel/plugin-proposal-class-properties": "^7.0.0",
"@babel/plugin-proposal-nullish-coalescing-operator": "^7.0.0",
"@babel/plugin-proposal-object-rest-spread": "^7.0.0",
"@babel/plugin-proposal-optional-chaining": "^7.0.0",
"@babel/plugin-syntax-dynamic-import": "^7.0.0",
"@babel/plugin-transform-async-to-generator": "^7.0.0",
"@babel/plugin-transform-destructuring": "^7.0.0",
"@babel/plugin-transform-flow-strip-types": "^7.0.0",
"@babel/plugin-transform-modules-commonjs": "^7.0.0",
"@babel/plugin-transform-parameters": "^7.0.0",
"@babel/plugin-transform-react-jsx": "^7.0.0",
"@babel/plugin-transform-spread": "^7.0.0",
"@babel/preset-env": "^7.0.0",
"acorn": "^5.1.2",
"babel-eslint": "^10.0.1",
"babel-preset-jest": "^24.1.0",
"chalk": "^2.4.1",
"chokidar": "^2.0.4",
"codecov": "^2.2.0",
"debug": "^2.2.0",
"eslint": "5.1.0",
"eslint-config-fb-strict": "22.1.0",
"eslint-plugin-babel": "^5.2.1",
"eslint-plugin-flowtype": "2.43.0",
"eslint-plugin-import": "^2.9.0",
"eslint-plugin-jest": "21.8.0",
"eslint-plugin-jsx-a11y": "6.0.3",
"eslint-plugin-prettier": "2.6.0",
"eslint-plugin-react": "7.6.1",
"eslint-plugin-relay": "1.4.1",
"fbjs-scripts": "^1.1.0",
"flow-bin": "^0.114.0",
"glob": "^7.1.1",
"istanbul-api": "^1.1.0",
"istanbul-lib-coverage": "^1.0.0",
"jest": "^24.7.1",
"lerna": "2.4.0",
"micromatch": "^2.3.11",
"mkdirp": "^0.5.1",
"prettier": "1.17.0",
"pretty-format": "^24.7.0",
"progress": "^2.0.0",
"promise": "^7.1.1",
"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",
"watch": "yarn run build && node ./scripts/watch.js"
},
"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"
}