├── .gitignore
├── README.md
├── assets
└── logo.svg
├── package.json
├── template.json
├── template
├── .editorconfig
├── .env
├── .gitattributes
├── README.md
├── bsconfig.json
├── gitignore
├── public
│ ├── favicon.ico
│ ├── index.html
│ ├── logo192.png
│ ├── logo512.png
│ ├── manifest.json
│ └── robots.txt
└── src
│ ├── App.res
│ ├── Index.res
│ ├── index.js
│ ├── lib
│ └── Helpers.re
│ └── ui
│ ├── Logo
│ ├── Logo.re
│ └── logo.svg
│ └── Title
│ └── Title.re
└── yarn.lock
/.gitignore:
--------------------------------------------------------------------------------
1 | /node_modules
2 | /_esy
3 | *.bs.js
--------------------------------------------------------------------------------
/README.md:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 | Installation •
7 | License •
8 | Lukin Co.
9 |
10 |
11 | ## Installation
12 |
13 | ```
14 | yarn create react-app my-project --template @lukinco/cra-template-rescript-lukin
15 | ```
16 |
17 | ## License
18 |
19 | MIT
20 |
--------------------------------------------------------------------------------
/assets/logo.svg:
--------------------------------------------------------------------------------
1 |
12 |
--------------------------------------------------------------------------------
/package.json:
--------------------------------------------------------------------------------
1 | {
2 | "name": "@lukinco/cra-template-rescript-lukin",
3 | "version": "0.0.7",
4 | "description": "The Lukin Co. template for Create React App and ReScript",
5 | "scripts": {
6 | "postversion": "npm publish --access=public"
7 | },
8 | "keywords": [
9 | "react",
10 | "create-react-app",
11 | "template",
12 | "reason-react",
13 | "reason",
14 | "reasonml",
15 | "rescript-react",
16 | "rescript"
17 | ],
18 | "main": "template.json",
19 | "repository": {
20 | "type": "git",
21 | "url": "https://github.com/lukinco/cra-rescript-template-lukin.git",
22 | "directory": "cra-template-lukin"
23 | },
24 | "license": "MIT",
25 | "engines": {
26 | "node": ">=8"
27 | },
28 | "bugs": {
29 | "url": "https://github.com/lukinco/cra-rescript-template-lukin/issues"
30 | },
31 | "files": [
32 | "template",
33 | "template.json"
34 | ],
35 | "dependencies": {
36 | "concurrently": "^5.3.0"
37 | }
38 | }
--------------------------------------------------------------------------------
/template.json:
--------------------------------------------------------------------------------
1 | {
2 | "package": {
3 | "scripts": {
4 | "start": "concurrently \"yarn bsb\" \"yarn start:rescripts\"",
5 | "build": "yarn bsb:build && rescripts build",
6 | "test": "rescripts test",
7 | "bsb": "bsb -make-world -w",
8 | "start:rescripts": "rescripts start",
9 | "bsb:build": "bsb -make-world",
10 | "bsb:clean": "bsb -clean",
11 | "postinstall": "yarn bsb:build"
12 | },
13 | "dependencies": {
14 | "@rescripts/cli": "0.0.14",
15 | "@rescripts/rescript-env": "0.0.12",
16 | "bs-platform": "8.2.0",
17 | "reason-react": "0.9.1",
18 | "bs-css-emotion": "1.2.0",
19 | "concurrently": "5.3.0"
20 | },
21 | "rescripts": [
22 | "env"
23 | ]
24 | }
25 | }
--------------------------------------------------------------------------------
/template/.editorconfig:
--------------------------------------------------------------------------------
1 | root = true
2 |
3 | [*]
4 | charset = utf-8
5 | end_of_line = lf
6 | insert_final_newline = true
7 | indent_style = space
8 | indent_size = 2
9 | trim_trailing_whitespace = true
10 |
11 | [*.md]
12 | trim_trailing_whitespace = false
13 |
--------------------------------------------------------------------------------
/template/.env:
--------------------------------------------------------------------------------
1 | BROWSER=none
2 |
--------------------------------------------------------------------------------
/template/.gitattributes:
--------------------------------------------------------------------------------
1 | *.css linguist-detectable=false
2 | *.html linguist-detectable=false
3 | *.js linguist-detectable=false
4 | *.ts linguist-detectable=false
5 | *.c linguist-detectable=false
6 | *.cpp linguist-detectable=false
7 | *.re linguist-language=Reason
8 | *.rei linguist-language=Reason
9 | *.res linguist-language=Reason
10 | *.resi linguist-language=Reason
11 |
--------------------------------------------------------------------------------
/template/README.md:
--------------------------------------------------------------------------------
1 | This project was bootstrapped with [Create React App](https://github.com/facebook/create-react-app).
2 |
3 | ## Available Scripts
4 |
5 | In the project directory, you can run:
6 |
7 | ### `yarn start`
8 |
9 | Runs the ReScript compiler in the watch mode and the app in the development mode.
10 | Open [http://localhost:3000](http://localhost:3000) to view it in the browser.
11 |
12 | The page will reload if you make edits.
13 | You will also see any lint errors in the console.
14 |
15 | ### `yarn bsb`
16 |
17 | Runs the ReScript compiler in the watch mode.
18 |
19 | ### `yarn bsb:build`
20 | Runs the ReScript compiler.
21 |
22 | ### `yarn test`
23 |
24 | Launches the test runner in the interactive watch mode.
25 | See the section about [running tests](https://facebook.github.io/create-react-app/docs/running-tests) for more information.
26 |
27 | ### `yarn storybook`
28 |
29 | Runs the Storybook on [http://localhost:9009](http://localhost:9009)
30 |
31 | ### `yarn lint:fix`
32 |
33 | Fix lint warnings using Standard.js
34 |
35 | ### `yarn build`
36 |
37 | Builds the app for production to the `build` folder.
38 | It correctly bundles React in production mode and optimizes the build for the best performance.
39 |
40 | The build is minified and the filenames include the hashes.
41 | Your app is ready to be deployed!
42 |
43 | See the section about [deployment](https://facebook.github.io/create-react-app/docs/deployment) for more information.
44 |
45 | ### `yarn storybook:build`
46 |
47 | Builds Storybook for production to the `storybook-public` folder.
48 |
49 | ### `yarn eject`
50 |
51 | **Note: this is a one-way operation. Once you `eject`, you can’t go back!**
52 |
53 | If you aren’t satisfied with the build tool and configuration choices, you can `eject` at any time. This command will remove the single build dependency from your project.
54 |
55 | Instead, it will copy all the configuration files and the transitive dependencies (webpack, Babel, ESLint, etc) right into your project so you have full control over them. All of the commands except `eject` will still work, but they will point to the copied scripts so you can tweak them. At this point you’re on your own.
56 |
57 | You don’t have to ever use `eject`. The curated feature set is suitable for small and middle deployments, and you shouldn’t feel obligated to use this feature. However we understand that this tool wouldn’t be useful if you couldn’t customize it when you are ready for it.
58 |
59 |
60 | ## Learn More
61 |
62 | You can learn more in the [Create React App documentation](https://facebook.github.io/create-react-app/docs/getting-started).
63 |
64 | To learn React, check out the [React documentation](https://reactjs.org/).
65 |
66 | ### Code Splitting
67 |
68 | This section has moved here: https://facebook.github.io/create-react-app/docs/code-splitting
69 |
70 | ### Analyzing the Bundle Size
71 |
72 | This section has moved here: https://facebook.github.io/create-react-app/docs/analyzing-the-bundle-size
73 |
74 | ### Making a Progressive Web App
75 |
76 | This section has moved here: https://facebook.github.io/create-react-app/docs/making-a-progressive-web-app
77 |
78 | ### Advanced Configuration
79 |
80 | This section has moved here: https://facebook.github.io/create-react-app/docs/advanced-configuration
81 |
82 | ### Deployment
83 |
84 | This section has moved here: https://facebook.github.io/create-react-app/docs/deployment
85 |
86 | ### `yarn build` fails to minify
87 |
88 | This section has moved here: https://facebook.github.io/create-react-app/docs/troubleshooting#npm-run-build-fails-to-minify
89 |
--------------------------------------------------------------------------------
/template/bsconfig.json:
--------------------------------------------------------------------------------
1 | {
2 | "name": "react-app",
3 | "reason": {
4 | "react-jsx": 3
5 | },
6 | "sources": [
7 | {
8 | "dir": "src",
9 | "subdirs": true
10 | }
11 | ],
12 | "package-specs": [
13 | {
14 | "module": "es6",
15 | "in-source": true
16 | }
17 | ],
18 | "suffix": ".bs.js",
19 | "namespace": true,
20 | "bs-dependencies": [
21 | "reason-react",
22 | "bs-css",
23 | "bs-css-emotion"
24 | ],
25 | "bs-dev-dependencies": [],
26 | "ppx-flags": [],
27 | "refmt": 3,
28 | "warnings": {
29 | "error": "+5",
30 | "number": "-44"
31 | },
32 | "bsc-flags": [
33 | "-bs-super-errors",
34 | "-bs-no-version-header",
35 | "-open Belt"
36 | ]
37 | }
38 |
--------------------------------------------------------------------------------
/template/gitignore:
--------------------------------------------------------------------------------
1 | # See https://help.github.com/articles/ignoring-files/ for more about ignoring files.
2 |
3 | # dependencies
4 | /node_modules
5 | /.pnp
6 | .pnp.js
7 |
8 | # testing
9 | /coverage
10 |
11 | # production
12 | /build
13 |
14 | # misc
15 | .DS_Store
16 | .env.local
17 | .env.development.local
18 | .env.test.local
19 | .env.production.local
20 |
21 | npm-debug.log*
22 | yarn-debug.log*
23 | yarn-error.log*
24 |
25 | /lib
26 | *.bs.js
27 |
--------------------------------------------------------------------------------
/template/public/favicon.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lukinco/cra-template-rescript-lukin/fb9acfb457f19c00a9aed622f47cbae393da7751/template/public/favicon.ico
--------------------------------------------------------------------------------
/template/public/index.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
12 |
13 |
17 |
18 |
27 | React App
28 |
29 |
30 |
31 |
32 |
42 |
43 |
44 |
--------------------------------------------------------------------------------
/template/public/logo192.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lukinco/cra-template-rescript-lukin/fb9acfb457f19c00a9aed622f47cbae393da7751/template/public/logo192.png
--------------------------------------------------------------------------------
/template/public/logo512.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lukinco/cra-template-rescript-lukin/fb9acfb457f19c00a9aed622f47cbae393da7751/template/public/logo512.png
--------------------------------------------------------------------------------
/template/public/manifest.json:
--------------------------------------------------------------------------------
1 | {
2 | "short_name": "CRA + ReasonML/ReScript",
3 | "name": "CRA + ReasonML/ReScript Sample",
4 | "icons": [
5 | {
6 | "src": "favicon.ico",
7 | "sizes": "64x64 32x32 24x24 16x16",
8 | "type": "image/x-icon"
9 | },
10 | {
11 | "src": "logo192.png",
12 | "type": "image/png",
13 | "sizes": "192x192"
14 | },
15 | {
16 | "src": "logo512.png",
17 | "type": "image/png",
18 | "sizes": "512x512"
19 | }
20 | ],
21 | "start_url": ".",
22 | "display": "standalone",
23 | "theme_color": "#000000",
24 | "background_color": "#ffffff"
25 | }
26 |
--------------------------------------------------------------------------------
/template/public/robots.txt:
--------------------------------------------------------------------------------
1 | # https://www.robotstxt.org/robotstxt.html
2 | User-agent: *
3 | Disallow:
4 |
--------------------------------------------------------------------------------
/template/src/App.res:
--------------------------------------------------------------------------------
1 | module Styles = {
2 | open Css
3 |
4 | let wrapper = style(list{
5 | background(`000`->hex),
6 | padding(zero),
7 | margin(zero),
8 | height(100.->pct),
9 | width(100.->pct),
10 | overflow(auto),
11 | display(#flex),
12 | justifyContent(center),
13 | alignItems(center),
14 | flexDirection(column),
15 | })
16 |
17 | global(
18 | `html, body, #root`,
19 | list{padding(zero), margin(zero), height(100.->pct), width(100.->pct)},
20 | )
21 | global(`*`, list{boxSizing(#borderBox)})
22 | }
23 |
24 | @react.component
25 | let make = () => {
26 |
27 | }
28 |
--------------------------------------------------------------------------------
/template/src/Index.res:
--------------------------------------------------------------------------------
1 | let rootElement = ReactDOM.querySelector("#root");
2 |
3 | let () =
4 | switch (rootElement) {
5 | | Some(element) => ReactDOM.render(, element)
6 | | None => Js.log("#root element not found")
7 | };
8 |
--------------------------------------------------------------------------------
/template/src/index.js:
--------------------------------------------------------------------------------
1 | import './Index.bs'
2 |
--------------------------------------------------------------------------------
/template/src/lib/Helpers.re:
--------------------------------------------------------------------------------
1 | [@bs.val] external import: string => string = "require";
2 |
--------------------------------------------------------------------------------
/template/src/ui/Logo/Logo.re:
--------------------------------------------------------------------------------
1 | let logoUrl = Helpers.import("./logo.svg");
2 |
3 | [@react.component]
4 | let make = () =>
;
5 |
--------------------------------------------------------------------------------
/template/src/ui/Logo/logo.svg:
--------------------------------------------------------------------------------
1 |
12 |
--------------------------------------------------------------------------------
/template/src/ui/Title/Title.re:
--------------------------------------------------------------------------------
1 |
2 | let title = Css.(style([
3 | color("fff"->hex),
4 | fontFamily(`custom({|
5 | -apple-system,system-ui,
6 | BlinkMacSystemFont,
7 | "Segoe UI", Roboto,
8 | "Helvetica Neue",
9 | Arial,
10 | sans-serif
11 | |})),
12 | textAlign(center),
13 | margin(5.->rem),
14 | letterSpacing((-0.05)->em),
15 | fontSize(3.->rem)
16 | ]));
17 |
18 | [@react.component]
19 | let make = (~children) => children
;
20 |
--------------------------------------------------------------------------------
/yarn.lock:
--------------------------------------------------------------------------------
1 | # THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY.
2 | # yarn lockfile v1
3 |
4 |
5 | ansi-regex@^4.1.0:
6 | version "4.1.0"
7 | resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-4.1.0.tgz#8b9f8f08cf1acb843756a839ca8c7e3168c51997"
8 | integrity sha512-1apePfXM1UOSqw0o9IiFAovVz9M5S1Dg+4TrDwfMewQ6p/rmMueb7tWZjQ1rx4Loy1ArBggoqGpfqqdI4rondg==
9 |
10 | ansi-styles@^3.2.0, ansi-styles@^3.2.1:
11 | version "3.2.1"
12 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-3.2.1.tgz#41fbb20243e50b12be0f04b8dedbf07520ce841d"
13 | integrity sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==
14 | dependencies:
15 | color-convert "^1.9.0"
16 |
17 | camelcase@^5.0.0:
18 | version "5.3.1"
19 | resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-5.3.1.tgz#e3c9b31569e106811df242f715725a1f4c494320"
20 | integrity sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==
21 |
22 | chalk@^2.4.2:
23 | version "2.4.2"
24 | resolved "https://registry.yarnpkg.com/chalk/-/chalk-2.4.2.tgz#cd42541677a54333cf541a49108c1432b44c9424"
25 | integrity sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==
26 | dependencies:
27 | ansi-styles "^3.2.1"
28 | escape-string-regexp "^1.0.5"
29 | supports-color "^5.3.0"
30 |
31 | cliui@^5.0.0:
32 | version "5.0.0"
33 | resolved "https://registry.yarnpkg.com/cliui/-/cliui-5.0.0.tgz#deefcfdb2e800784aa34f46fa08e06851c7bbbc5"
34 | integrity sha512-PYeGSEmmHM6zvoef2w8TPzlrnNpXIjTipYK780YswmIP9vjxmd6Y2a3CB2Ks6/AU8NHjZugXvo8w3oWM2qnwXA==
35 | dependencies:
36 | string-width "^3.1.0"
37 | strip-ansi "^5.2.0"
38 | wrap-ansi "^5.1.0"
39 |
40 | color-convert@^1.9.0:
41 | version "1.9.3"
42 | resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-1.9.3.tgz#bb71850690e1f136567de629d2d5471deda4c1e8"
43 | integrity sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==
44 | dependencies:
45 | color-name "1.1.3"
46 |
47 | color-name@1.1.3:
48 | version "1.1.3"
49 | resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.3.tgz#a7d0558bd89c42f795dd42328f740831ca53bc25"
50 | integrity sha1-p9BVi9icQveV3UIyj3QIMcpTvCU=
51 |
52 | concurrently@^5.3.0:
53 | version "5.3.0"
54 | resolved "https://registry.yarnpkg.com/concurrently/-/concurrently-5.3.0.tgz#7500de6410d043c912b2da27de3202cb489b1e7b"
55 | integrity sha512-8MhqOB6PWlBfA2vJ8a0bSFKATOdWlHiQlk11IfmQBPaHVP8oP2gsh2MObE6UR3hqDHqvaIvLTyceNW6obVuFHQ==
56 | dependencies:
57 | chalk "^2.4.2"
58 | date-fns "^2.0.1"
59 | lodash "^4.17.15"
60 | read-pkg "^4.0.1"
61 | rxjs "^6.5.2"
62 | spawn-command "^0.0.2-1"
63 | supports-color "^6.1.0"
64 | tree-kill "^1.2.2"
65 | yargs "^13.3.0"
66 |
67 | date-fns@^2.0.1:
68 | version "2.16.1"
69 | resolved "https://registry.yarnpkg.com/date-fns/-/date-fns-2.16.1.tgz#05775792c3f3331da812af253e1a935851d3834b"
70 | integrity sha512-sAJVKx/FqrLYHAQeN7VpJrPhagZc9R4ImZIWYRFZaaohR3KzmuK88touwsSwSVT8Qcbd4zoDsnGfX4GFB4imyQ==
71 |
72 | decamelize@^1.2.0:
73 | version "1.2.0"
74 | resolved "https://registry.yarnpkg.com/decamelize/-/decamelize-1.2.0.tgz#f6534d15148269b20352e7bee26f501f9a191290"
75 | integrity sha1-9lNNFRSCabIDUue+4m9QH5oZEpA=
76 |
77 | emoji-regex@^7.0.1:
78 | version "7.0.3"
79 | resolved "https://registry.yarnpkg.com/emoji-regex/-/emoji-regex-7.0.3.tgz#933a04052860c85e83c122479c4748a8e4c72156"
80 | integrity sha512-CwBLREIQ7LvYFB0WyRvwhq5N5qPhc6PMjD6bYggFlI5YyDgl+0vxq5VHbMOFqLg7hfWzmu8T5Z1QofhmTIhItA==
81 |
82 | error-ex@^1.3.1:
83 | version "1.3.2"
84 | resolved "https://registry.yarnpkg.com/error-ex/-/error-ex-1.3.2.tgz#b4ac40648107fdcdcfae242f428bea8a14d4f1bf"
85 | integrity sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==
86 | dependencies:
87 | is-arrayish "^0.2.1"
88 |
89 | escape-string-regexp@^1.0.5:
90 | version "1.0.5"
91 | resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4"
92 | integrity sha1-G2HAViGQqN/2rjuyzwIAyhMLhtQ=
93 |
94 | find-up@^3.0.0:
95 | version "3.0.0"
96 | resolved "https://registry.yarnpkg.com/find-up/-/find-up-3.0.0.tgz#49169f1d7993430646da61ecc5ae355c21c97b73"
97 | integrity sha512-1yD6RmLI1XBfxugvORwlck6f75tYL+iR0jqwsOrOxMZyGYqUuDhJ0l4AXdO1iX/FTs9cBAMEk1gWSEx1kSbylg==
98 | dependencies:
99 | locate-path "^3.0.0"
100 |
101 | get-caller-file@^2.0.1:
102 | version "2.0.5"
103 | resolved "https://registry.yarnpkg.com/get-caller-file/-/get-caller-file-2.0.5.tgz#4f94412a82db32f36e3b0b9741f8a97feb031f7e"
104 | integrity sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==
105 |
106 | has-flag@^3.0.0:
107 | version "3.0.0"
108 | resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-3.0.0.tgz#b5d454dc2199ae225699f3467e5a07f3b955bafd"
109 | integrity sha1-tdRU3CGZriJWmfNGfloH87lVuv0=
110 |
111 | hosted-git-info@^2.1.4:
112 | version "2.8.8"
113 | resolved "https://registry.yarnpkg.com/hosted-git-info/-/hosted-git-info-2.8.8.tgz#7539bd4bc1e0e0a895815a2e0262420b12858488"
114 | integrity sha512-f/wzC2QaWBs7t9IYqB4T3sR1xviIViXJRJTWBlx2Gf3g0Xi5vI7Yy4koXQ1c9OYDGHN9sBy1DQ2AB8fqZBWhUg==
115 |
116 | is-arrayish@^0.2.1:
117 | version "0.2.1"
118 | resolved "https://registry.yarnpkg.com/is-arrayish/-/is-arrayish-0.2.1.tgz#77c99840527aa8ecb1a8ba697b80645a7a926a9d"
119 | integrity sha1-d8mYQFJ6qOyxqLppe4BkWnqSap0=
120 |
121 | is-fullwidth-code-point@^2.0.0:
122 | version "2.0.0"
123 | resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz#a3b30a5c4f199183167aaab93beefae3ddfb654f"
124 | integrity sha1-o7MKXE8ZkYMWeqq5O+764937ZU8=
125 |
126 | json-parse-better-errors@^1.0.1:
127 | version "1.0.2"
128 | resolved "https://registry.yarnpkg.com/json-parse-better-errors/-/json-parse-better-errors-1.0.2.tgz#bb867cfb3450e69107c131d1c514bab3dc8bcaa9"
129 | integrity sha512-mrqyZKfX5EhL7hvqcV6WG1yYjnjeuYDzDhhcAAUrq8Po85NBQBJP+ZDUT75qZQ98IkUoBqdkExkukOU7Ts2wrw==
130 |
131 | locate-path@^3.0.0:
132 | version "3.0.0"
133 | resolved "https://registry.yarnpkg.com/locate-path/-/locate-path-3.0.0.tgz#dbec3b3ab759758071b58fe59fc41871af21400e"
134 | integrity sha512-7AO748wWnIhNqAuaty2ZWHkQHRSNfPVIsPIfwEOWO22AmaoVrWavlOcMR5nzTLNYvp36X220/maaRsrec1G65A==
135 | dependencies:
136 | p-locate "^3.0.0"
137 | path-exists "^3.0.0"
138 |
139 | lodash@^4.17.15:
140 | version "4.17.20"
141 | resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.20.tgz#b44a9b6297bcb698f1c51a3545a2b3b368d59c52"
142 | integrity sha512-PlhdFcillOINfeV7Ni6oF1TAEayyZBoZ8bcshTHqOYJYlrqzRK5hagpagky5o4HfCzzd1TRkXPMFq6cKk9rGmA==
143 |
144 | normalize-package-data@^2.3.2:
145 | version "2.5.0"
146 | resolved "https://registry.yarnpkg.com/normalize-package-data/-/normalize-package-data-2.5.0.tgz#e66db1838b200c1dfc233225d12cb36520e234a8"
147 | integrity sha512-/5CMN3T0R4XTj4DcGaexo+roZSdSFW/0AOOTROrjxzCG1wrWXEsGbRKevjlIL+ZDE4sZlJr5ED4YW0yqmkK+eA==
148 | dependencies:
149 | hosted-git-info "^2.1.4"
150 | resolve "^1.10.0"
151 | semver "2 || 3 || 4 || 5"
152 | validate-npm-package-license "^3.0.1"
153 |
154 | p-limit@^2.0.0:
155 | version "2.3.0"
156 | resolved "https://registry.yarnpkg.com/p-limit/-/p-limit-2.3.0.tgz#3dd33c647a214fdfffd835933eb086da0dc21db1"
157 | integrity sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==
158 | dependencies:
159 | p-try "^2.0.0"
160 |
161 | p-locate@^3.0.0:
162 | version "3.0.0"
163 | resolved "https://registry.yarnpkg.com/p-locate/-/p-locate-3.0.0.tgz#322d69a05c0264b25997d9f40cd8a891ab0064a4"
164 | integrity sha512-x+12w/To+4GFfgJhBEpiDcLozRJGegY+Ei7/z0tSLkMmxGZNybVMSfWj9aJn8Z5Fc7dBUNJOOVgPv2H7IwulSQ==
165 | dependencies:
166 | p-limit "^2.0.0"
167 |
168 | p-try@^2.0.0:
169 | version "2.2.0"
170 | resolved "https://registry.yarnpkg.com/p-try/-/p-try-2.2.0.tgz#cb2868540e313d61de58fafbe35ce9004d5540e6"
171 | integrity sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==
172 |
173 | parse-json@^4.0.0:
174 | version "4.0.0"
175 | resolved "https://registry.yarnpkg.com/parse-json/-/parse-json-4.0.0.tgz#be35f5425be1f7f6c747184f98a788cb99477ee0"
176 | integrity sha1-vjX1Qlvh9/bHRxhPmKeIy5lHfuA=
177 | dependencies:
178 | error-ex "^1.3.1"
179 | json-parse-better-errors "^1.0.1"
180 |
181 | path-exists@^3.0.0:
182 | version "3.0.0"
183 | resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-3.0.0.tgz#ce0ebeaa5f78cb18925ea7d810d7b59b010fd515"
184 | integrity sha1-zg6+ql94yxiSXqfYENe1mwEP1RU=
185 |
186 | path-parse@^1.0.6:
187 | version "1.0.6"
188 | resolved "https://registry.yarnpkg.com/path-parse/-/path-parse-1.0.6.tgz#d62dbb5679405d72c4737ec58600e9ddcf06d24c"
189 | integrity sha512-GSmOT2EbHrINBf9SR7CDELwlJ8AENk3Qn7OikK4nFYAu3Ote2+JYNVvkpAEQm3/TLNEJFD/xZJjzyxg3KBWOzw==
190 |
191 | pify@^3.0.0:
192 | version "3.0.0"
193 | resolved "https://registry.yarnpkg.com/pify/-/pify-3.0.0.tgz#e5a4acd2c101fdf3d9a4d07f0dbc4db49dd28176"
194 | integrity sha1-5aSs0sEB/fPZpNB/DbxNtJ3SgXY=
195 |
196 | read-pkg@^4.0.1:
197 | version "4.0.1"
198 | resolved "https://registry.yarnpkg.com/read-pkg/-/read-pkg-4.0.1.tgz#963625378f3e1c4d48c85872b5a6ec7d5d093237"
199 | integrity sha1-ljYlN48+HE1IyFhytabsfV0JMjc=
200 | dependencies:
201 | normalize-package-data "^2.3.2"
202 | parse-json "^4.0.0"
203 | pify "^3.0.0"
204 |
205 | require-directory@^2.1.1:
206 | version "2.1.1"
207 | resolved "https://registry.yarnpkg.com/require-directory/-/require-directory-2.1.1.tgz#8c64ad5fd30dab1c976e2344ffe7f792a6a6df42"
208 | integrity sha1-jGStX9MNqxyXbiNE/+f3kqam30I=
209 |
210 | require-main-filename@^2.0.0:
211 | version "2.0.0"
212 | resolved "https://registry.yarnpkg.com/require-main-filename/-/require-main-filename-2.0.0.tgz#d0b329ecc7cc0f61649f62215be69af54aa8989b"
213 | integrity sha512-NKN5kMDylKuldxYLSUfrbo5Tuzh4hd+2E8NPPX02mZtn1VuREQToYe/ZdlJy+J3uCpfaiGF05e7B8W0iXbQHmg==
214 |
215 | resolve@^1.10.0:
216 | version "1.17.0"
217 | resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.17.0.tgz#b25941b54968231cc2d1bb76a79cb7f2c0bf8444"
218 | integrity sha512-ic+7JYiV8Vi2yzQGFWOkiZD5Z9z7O2Zhm9XMaTxdJExKasieFCr+yXZ/WmXsckHiKl12ar0y6XiXDx3m4RHn1w==
219 | dependencies:
220 | path-parse "^1.0.6"
221 |
222 | rxjs@^6.5.2:
223 | version "6.6.3"
224 | resolved "https://registry.yarnpkg.com/rxjs/-/rxjs-6.6.3.tgz#8ca84635c4daa900c0d3967a6ee7ac60271ee552"
225 | integrity sha512-trsQc+xYYXZ3urjOiJOuCOa5N3jAZ3eiSpQB5hIT8zGlL2QfnHLJ2r7GMkBGuIausdJN1OneaI6gQlsqNHHmZQ==
226 | dependencies:
227 | tslib "^1.9.0"
228 |
229 | "semver@2 || 3 || 4 || 5":
230 | version "5.7.1"
231 | resolved "https://registry.yarnpkg.com/semver/-/semver-5.7.1.tgz#a954f931aeba508d307bbf069eff0c01c96116f7"
232 | integrity sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==
233 |
234 | set-blocking@^2.0.0:
235 | version "2.0.0"
236 | resolved "https://registry.yarnpkg.com/set-blocking/-/set-blocking-2.0.0.tgz#045f9782d011ae9a6803ddd382b24392b3d890f7"
237 | integrity sha1-BF+XgtARrppoA93TgrJDkrPYkPc=
238 |
239 | spawn-command@^0.0.2-1:
240 | version "0.0.2-1"
241 | resolved "https://registry.yarnpkg.com/spawn-command/-/spawn-command-0.0.2-1.tgz#62f5e9466981c1b796dc5929937e11c9c6921bd0"
242 | integrity sha1-YvXpRmmBwbeW3Fkpk34RycaSG9A=
243 |
244 | spdx-correct@^3.0.0:
245 | version "3.1.1"
246 | resolved "https://registry.yarnpkg.com/spdx-correct/-/spdx-correct-3.1.1.tgz#dece81ac9c1e6713e5f7d1b6f17d468fa53d89a9"
247 | integrity sha512-cOYcUWwhCuHCXi49RhFRCyJEK3iPj1Ziz9DpViV3tbZOwXD49QzIN3MpOLJNxh2qwq2lJJZaKMVw9qNi4jTC0w==
248 | dependencies:
249 | spdx-expression-parse "^3.0.0"
250 | spdx-license-ids "^3.0.0"
251 |
252 | spdx-exceptions@^2.1.0:
253 | version "2.3.0"
254 | resolved "https://registry.yarnpkg.com/spdx-exceptions/-/spdx-exceptions-2.3.0.tgz#3f28ce1a77a00372683eade4a433183527a2163d"
255 | integrity sha512-/tTrYOC7PPI1nUAgx34hUpqXuyJG+DTHJTnIULG4rDygi4xu/tfgmq1e1cIRwRzwZgo4NLySi+ricLkZkw4i5A==
256 |
257 | spdx-expression-parse@^3.0.0:
258 | version "3.0.1"
259 | resolved "https://registry.yarnpkg.com/spdx-expression-parse/-/spdx-expression-parse-3.0.1.tgz#cf70f50482eefdc98e3ce0a6833e4a53ceeba679"
260 | integrity sha512-cbqHunsQWnJNE6KhVSMsMeH5H/L9EpymbzqTQ3uLwNCLZ1Q481oWaofqH7nO6V07xlXwY6PhQdQ2IedWx/ZK4Q==
261 | dependencies:
262 | spdx-exceptions "^2.1.0"
263 | spdx-license-ids "^3.0.0"
264 |
265 | spdx-license-ids@^3.0.0:
266 | version "3.0.6"
267 | resolved "https://registry.yarnpkg.com/spdx-license-ids/-/spdx-license-ids-3.0.6.tgz#c80757383c28abf7296744998cbc106ae8b854ce"
268 | integrity sha512-+orQK83kyMva3WyPf59k1+Y525csj5JejicWut55zeTWANuN17qSiSLUXWtzHeNWORSvT7GLDJ/E/XiIWoXBTw==
269 |
270 | string-width@^3.0.0, string-width@^3.1.0:
271 | version "3.1.0"
272 | resolved "https://registry.yarnpkg.com/string-width/-/string-width-3.1.0.tgz#22767be21b62af1081574306f69ac51b62203961"
273 | integrity sha512-vafcv6KjVZKSgz06oM/H6GDBrAtz8vdhQakGjFIvNrHA6y3HCF1CInLy+QLq8dTJPQ1b+KDUqDFctkdRW44e1w==
274 | dependencies:
275 | emoji-regex "^7.0.1"
276 | is-fullwidth-code-point "^2.0.0"
277 | strip-ansi "^5.1.0"
278 |
279 | strip-ansi@^5.0.0, strip-ansi@^5.1.0, strip-ansi@^5.2.0:
280 | version "5.2.0"
281 | resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-5.2.0.tgz#8c9a536feb6afc962bdfa5b104a5091c1ad9c0ae"
282 | integrity sha512-DuRs1gKbBqsMKIZlrffwlug8MHkcnpjs5VPmL1PAh+mA30U0DTotfDZ0d2UUsXpPmPmMMJ6W773MaA3J+lbiWA==
283 | dependencies:
284 | ansi-regex "^4.1.0"
285 |
286 | supports-color@^5.3.0:
287 | version "5.5.0"
288 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-5.5.0.tgz#e2e69a44ac8772f78a1ec0b35b689df6530efc8f"
289 | integrity sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==
290 | dependencies:
291 | has-flag "^3.0.0"
292 |
293 | supports-color@^6.1.0:
294 | version "6.1.0"
295 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-6.1.0.tgz#0764abc69c63d5ac842dd4867e8d025e880df8f3"
296 | integrity sha512-qe1jfm1Mg7Nq/NSh6XE24gPXROEVsWHxC1LIx//XNlD9iw7YZQGjZNjYN7xGaEG6iKdA8EtNFW6R0gjnVXp+wQ==
297 | dependencies:
298 | has-flag "^3.0.0"
299 |
300 | tree-kill@^1.2.2:
301 | version "1.2.2"
302 | resolved "https://registry.yarnpkg.com/tree-kill/-/tree-kill-1.2.2.tgz#4ca09a9092c88b73a7cdc5e8a01b507b0790a0cc"
303 | integrity sha512-L0Orpi8qGpRG//Nd+H90vFB+3iHnue1zSSGmNOOCh1GLJ7rUKVwV2HvijphGQS2UmhUZewS9VgvxYIdgr+fG1A==
304 |
305 | tslib@^1.9.0:
306 | version "1.13.0"
307 | resolved "https://registry.yarnpkg.com/tslib/-/tslib-1.13.0.tgz#c881e13cc7015894ed914862d276436fa9a47043"
308 | integrity sha512-i/6DQjL8Xf3be4K/E6Wgpekn5Qasl1usyw++dAA35Ue5orEn65VIxOA+YvNNl9HV3qv70T7CNwjODHZrLwvd1Q==
309 |
310 | validate-npm-package-license@^3.0.1:
311 | version "3.0.4"
312 | resolved "https://registry.yarnpkg.com/validate-npm-package-license/-/validate-npm-package-license-3.0.4.tgz#fc91f6b9c7ba15c857f4cb2c5defeec39d4f410a"
313 | integrity sha512-DpKm2Ui/xN7/HQKCtpZxoRWBhZ9Z0kqtygG8XCgNQ8ZlDnxuQmWhj566j8fN4Cu3/JmbhsDo7fcAJq4s9h27Ew==
314 | dependencies:
315 | spdx-correct "^3.0.0"
316 | spdx-expression-parse "^3.0.0"
317 |
318 | which-module@^2.0.0:
319 | version "2.0.0"
320 | resolved "https://registry.yarnpkg.com/which-module/-/which-module-2.0.0.tgz#d9ef07dce77b9902b8a3a8fa4b31c3e3f7e6e87a"
321 | integrity sha1-2e8H3Od7mQK4o6j6SzHD4/fm6Ho=
322 |
323 | wrap-ansi@^5.1.0:
324 | version "5.1.0"
325 | resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-5.1.0.tgz#1fd1f67235d5b6d0fee781056001bfb694c03b09"
326 | integrity sha512-QC1/iN/2/RPVJ5jYK8BGttj5z83LmSKmvbvrXPNCLZSEb32KKVDJDl/MOt2N01qU2H/FkzEa9PKto1BqDjtd7Q==
327 | dependencies:
328 | ansi-styles "^3.2.0"
329 | string-width "^3.0.0"
330 | strip-ansi "^5.0.0"
331 |
332 | y18n@^4.0.0:
333 | version "4.0.0"
334 | resolved "https://registry.yarnpkg.com/y18n/-/y18n-4.0.0.tgz#95ef94f85ecc81d007c264e190a120f0a3c8566b"
335 | integrity sha512-r9S/ZyXu/Xu9q1tYlpsLIsa3EeLXXk0VwlxqTcFRfg9EhMW+17kbt9G0NrgCmhGb5vT2hyhJZLfDGx+7+5Uj/w==
336 |
337 | yargs-parser@^13.1.2:
338 | version "13.1.2"
339 | resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-13.1.2.tgz#130f09702ebaeef2650d54ce6e3e5706f7a4fb38"
340 | integrity sha512-3lbsNRf/j+A4QuSZfDRA7HRSfWrzO0YjqTJd5kjAq37Zep1CEgaYmrH9Q3GwPiB9cHyd1Y1UwggGhJGoxipbzg==
341 | dependencies:
342 | camelcase "^5.0.0"
343 | decamelize "^1.2.0"
344 |
345 | yargs@^13.3.0:
346 | version "13.3.2"
347 | resolved "https://registry.yarnpkg.com/yargs/-/yargs-13.3.2.tgz#ad7ffefec1aa59565ac915f82dccb38a9c31a2dd"
348 | integrity sha512-AX3Zw5iPruN5ie6xGRIDgqkT+ZhnRlZMLMHAs8tg7nRruy2Nb+i5o9bwghAogtM08q1dpr2LVoS8KSTMYpWXUw==
349 | dependencies:
350 | cliui "^5.0.0"
351 | find-up "^3.0.0"
352 | get-caller-file "^2.0.1"
353 | require-directory "^2.1.1"
354 | require-main-filename "^2.0.0"
355 | set-blocking "^2.0.0"
356 | string-width "^3.0.0"
357 | which-module "^2.0.0"
358 | y18n "^4.0.0"
359 | yargs-parser "^13.1.2"
360 |
--------------------------------------------------------------------------------