|
16 | 16 | "lib/" |
17 | 17 | ], |
18 | 18 | "scripts": { |
19 | | - "build": "cross-env NODE_ENV=production node scripts/build.js", |
| 19 | + "build": "cross-env NODE_ENV=production node ./scripts/build.js", |
20 | 20 | "jest": "cross-env NODE_ENV=test jest \"$@\"", |
21 | 21 | "lint": "yarn run lint-prettier && eslint . --cache", |
22 | | - "lint-prettier": "node scripts/prettier.js lint", |
23 | | - "prettier": "node scripts/prettier.js write", |
24 | | - "tck": "yarn run build && node packages/rsocket-tck/build/index.js \"$@\"", |
25 | | - "simple-cli": "yarn run build && node packages/rsocket-examples/build/SimpleCli.js \"$@\"", |
26 | | - "resume-example": "yarn run build && node packages/rsocket-examples/build/ResumeExample.js", |
27 | | - "lease-client-example": "yarn run build && node packages/rsocket-examples/build/LeaseClientExample.js \"$@\"", |
| 22 | + "lint-prettier": "node ./scripts/prettier.js lint", |
| 23 | + "prettier": "node ./scripts/prettier.js write", |
| 24 | + "tck": "yarn run build && node ./packages/rsocket-tck/build/index.js \"$@\"", |
| 25 | + "simple-cli": "yarn run build && node ./packages/rsocket-examples/build/SimpleCli.js \"$@\"", |
| 26 | + "resume-example": "yarn run build && node ./packages/rsocket-examples/build/ResumeExample.js", |
| 27 | + "lease-client-example": "yarn run build && node ./packages/rsocket-examples/build/LeaseClientExample.js \"$@\"", |
28 | 28 | "test": "f() { EXIT=0; yarn run typecheck || EXIT=$?; yarn run jest \"$@\" || EXIT=$?; exit $EXIT; }; f", |
29 | | - "typecheck": "flow check packages/" |
| 29 | + "typecheck": "flow check ./packages/" |
30 | 30 | }, |
31 | 31 | "workspaces": [ |
32 | 32 | "packages/*" |
33 | 33 | ], |
34 | 34 | "devDependencies": { |
35 | | - "babel-cli": "^6.9.0", |
36 | | - "babel-core": "^6.9.0", |
37 | | - "babel-eslint": "^7.2.1", |
38 | | - "babel-plugin-minify-replace": "^0.4.3", |
39 | | - "babel-plugin-transform-async-to-generator": "^6.24.1", |
40 | | - "babel-plugin-transform-class-properties": "^6.24.1", |
41 | | - "babel-plugin-transform-es2015-modules-commonjs": "^6.24.1", |
42 | | - "babel-plugin-transform-flow-strip-types": "^6.22.0", |
43 | | - "babel-plugin-transform-object-rest-spread": "^6.23.0", |
44 | | - "babel-plugin-transform-runtime": "^6.9.0", |
45 | | - "babel-polyfill": "^6.9.0", |
46 | | - "babel-preset-fbjs": "^2.0.0", |
47 | | - "babel-runtime": "^6.6.1", |
48 | | - "buffer": "^5.0.6", |
49 | | - "chalk": "^1.1.3", |
50 | | - "cross-env": "^6.0.3", |
51 | | - "eslint": "^4.18.2", |
52 | | - "eslint-config-fb-strict": "^19.0.1", |
53 | | - "eslint-plugin-babel": "^4.1.1", |
54 | | - "eslint-plugin-flowtype": "^2.30.3", |
55 | | - "eslint-plugin-jasmine": "^2.2.0", |
56 | | - "eslint-plugin-jsx-a11y": "^6.2.3", |
57 | | - "eslint-plugin-prefer-object-spread": "^1.1.0", |
58 | | - "eslint-plugin-react": "^6.10.3", |
59 | | - "eslint-plugin-relay": "^1.3.12", |
60 | | - "fbjs": "^0.8.1", |
61 | | - "fbjs-scripts": "^0.7.1", |
62 | | - "flow-bin": "^0.78.0", |
63 | | - "glob": "^7.1.1", |
64 | | - "jest": "^19.0.2", |
65 | | - "lerna": "^2.9.0", |
66 | | - "object-assign": "^4.1.0", |
67 | | - "prettier": "0.22.0", |
68 | | - "rollup": "^0.41.6", |
69 | | - "rollup-plugin-babel": "^2.7.1", |
70 | | - "rollup-plugin-commonjs": "^8.0.2", |
71 | | - "rollup-plugin-node-resolve": "^3.0.0", |
72 | | - "ws": "^2.3.1" |
| 35 | + "@babel/cli": "^7.11.6", |
| 36 | + "@babel/core": "^7.11.6", |
| 37 | + "babel-eslint": "^10.1.0", |
| 38 | + "babel-plugin-minify-replace": "^0.5.0", |
| 39 | + "@babel/plugin-transform-async-to-generator": "^7.10.4", |
| 40 | + "@babel/plugin-proposal-class-properties": "^7.10.4", |
| 41 | + "@babel/plugin-transform-modules-commonjs": "^7.10.4", |
| 42 | + "@babel/plugin-transform-flow-strip-types": "^7.10.4", |
| 43 | + "@babel/plugin-proposal-object-rest-spread": "^7.11.0", |
| 44 | + "@babel/plugin-transform-runtime": "^7.11.5", |
| 45 | + "@babel/polyfill": "^7.11.5", |
| 46 | + "babel-preset-fbjs": "^3.3.0", |
| 47 | + "@babel/runtime": "^7.11.2", |
| 48 | + "buffer": "^5.6.0", |
| 49 | + "chalk": "^4.1.0", |
| 50 | + "cross-env": "^7.0.2", |
| 51 | + "eslint": "^7.10.0", |
| 52 | + "eslint-config-fb-strict": "^26.0.0", |
| 53 | + "eslint-plugin-babel": "^5.3.1", |
| 54 | + "eslint-plugin-flowtype": "^5.2.0", |
| 55 | + "eslint-plugin-jasmine": "^4.1.1", |
| 56 | + "eslint-plugin-jsx-a11y": "^6.3.1", |
| 57 | + "eslint-plugin-prefer-object-spread": "^1.2.1", |
| 58 | + "eslint-plugin-react": "^7.21.2", |
| 59 | + "eslint-plugin-relay": "^1.8.1", |
| 60 | + "eslint-plugin-jest": "^24.0.2", |
| 61 | + "fbjs": "^2.0.0", |
| 62 | + "fbjs-scripts": "^2.0.0", |
| 63 | + "flow-bin": "^0.134.0", |
| 64 | + "glob": "^7.1.6", |
| 65 | + "jest": "^26.4.2", |
| 66 | + "lerna": "^3.22.1", |
| 67 | + "object-assign": "^4.1.1", |
| 68 | + "prettier": "2.1.2", |
| 69 | + "rollup": "^2.28.2", |
| 70 | + "@rollup/plugin-babel": "^5.2.1", |
| 71 | + "@rollup/plugin-commonjs": "^15.1.0", |
| 72 | + "@rollup/plugin-node-resolve": "^9.0.0", |
| 73 | + "ws": "^7.3.1" |
73 | 74 | }, |
74 | 75 | "devEngines": { |
75 | 76 | "node": ">=4.x" |
|
0 commit comments