This repository has been archived by the owner on May 25, 2021. It is now read-only.
forked from facebook/fbt
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
90 lines (90 loc) · 3.12 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
85
86
87
88
89
90
{
"private": true,
"//": "Copyright (c) Facebook, Inc. and its affiliates. All rights reserved.",
"name": "fbt-top-level-repo",
"version": "0.9.0",
"main": "index.js",
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.2.0",
"@babel/generator": "^7.2.0",
"@babel/node": "7.2.2",
"@babel/plugin-proposal-nullish-coalescing-operator": "^7.8.3",
"@babel/plugin-proposal-optional-catch-binding": "^7.2.0",
"@babel/plugin-syntax-bigint": "^7.0.0",
"@babel/plugin-syntax-class-properties": "^7.2.0",
"@babel/plugin-syntax-dynamic-import": "^7.2.0",
"@babel/plugin-syntax-flow": "^7.2.0",
"@babel/plugin-syntax-jsx": "^7.2.0",
"@babel/plugin-syntax-nullish-coalescing-operator": "^7.2.0",
"@babel/plugin-syntax-numeric-separator": "^7.2.0",
"@babel/plugin-syntax-object-rest-spread": "^7.2.0",
"@babel/plugin-syntax-optional-catch-binding": "^7.2.0",
"@babel/plugin-syntax-optional-chaining": "^7.2.0",
"@babel/plugin-transform-flow-strip-types": "^7.2.0",
"@babel/preset-flow": "^7.0.0",
"@cnakazawa/watch": "^1.0.3",
"babel-core": "7.0.0-bridge.0",
"babel-preset-fbjs": "^3.1.2",
"del": "^3.0.0",
"fbjs-scripts": "^1.2.0",
"flow-bin": "^0.132.0",
"gulp": "^4.0.0",
"gulp-babel": "^8.0.0",
"gulp-clean-css": "^4.0.0",
"gulp-concat-css": "^3.1.0",
"gulp-derequire": "^2.1.0",
"gulp-flatten": "^0.4.0",
"gulp-header": "^2.0.9",
"gulp-if": "^2.0.2",
"gulp-rename": "^1.4.0",
"gulp-rewrite-flowtyped-modules": "^0.0.3",
"gulp-util": "^3.0.8",
"invariant": "^2.2.4",
"jest": "^24.9.0",
"jest-cli": "^24.9.0",
"jest-docblock": "^22.2.0",
"prettier": "^2.0.5",
"react-dom": "^16.10.2",
"uglifyjs-webpack-plugin": "^2.1.1",
"webpack": "^4.0.0",
"webpack-stream": "^5.2.1",
"yargs": "^12.0.5"
},
"dependencies": {
"@babel/plugin-transform-runtime": "^7.2.0",
"babel-plugin-minify-replace": "^0.5.0",
"fbjs": "^1.0.0",
"shelljs": "^0.8.4"
},
"scripts": {
"babel-plugin-fbt-runtime:test": "jest packages/babel-plugin-fbt-runtime",
"babel-plugin-fbt:test": "jest packages/babel-plugin-fbt",
"build-runtime": "gulp lib",
"clean-test": "yarn install && cd demo-app && yarn clean-build && yarn test-build-scripts && cd .. && yarn test && yarn flow:check",
"clean": "gulp clean",
"demo-app:test": "cd demo-app && yarn test",
"fb-tiger-hash:test": "jest fb-tiger-hash && cd packages/fb-tiger-hash && yarn test-types",
"flow:check": "flow check --show-all-errors",
"flow:watch": "yarn watch 'yarn flow stop && yarn flow check --show-all-errors 2>&1 | tee .flow-results' . --ignoreDotFiles",
"postinstall": "yarn build-runtime",
"test:watch": "jest --watch",
"test": "jest"
},
"resolutions": {
"**/@babel/core": "^7.2.0",
"**/@babel/generator": "^7.2.0",
"**/cross-spawn": "^6.0.5"
},
"workspaces": [
"demo-app",
"packages/babel-plugin-fbt",
"packages/babel-plugin-fbt-runtime",
"packages/fb-babel-plugin-utils",
"packages/fb-tiger-hash",
"packages/fbt"
],
"engines": {
"node": ">= 10.4.0"
}
}