|
31 | 31 | "start-prod": "cross-env NODE_PATH=src NODE_ENV=production PORT=8080 APIPORT=3030 node ./bin/server.js", |
32 | 32 | "start-prod-api": "cross-env NODE_PATH=api NODE_ENV=production APIPORT=3030 node ./bin/api.js", |
33 | 33 | "dev": "concurrently --kill-others \"yarn watch-client\" \"yarn start-dev\" \"yarn start-dev-api\"", |
34 | | - "start-dev": "cross-env NODE_PATH=src NODE_ENV=development PORT=3000 APIPORT=3030 WEBPACK_DLLS=1 node ./bin/server.js", |
| 34 | + "start-dev": "cross-env NODE_PATH=src NODE_ENV=development PORT=3000 APIPORT=3030 node ./bin/server.js", |
35 | 35 | "start-dev-api": "cross-env NODE_PATH=api NODE_ENV=development APIPORT=3030 node ./bin/api.js", |
36 | | - "watch-client": "cross-env UV_THREADPOOL_SIZE=100 NODE_PATH=src NODE_ENV=development PORT=3000 APIPORT=3030 WEBPACK_DLLS=1 node webpack/webpack-dev-server.js", |
| 36 | + "watch-client": "cross-env UV_THREADPOOL_SIZE=100 NODE_PATH=src NODE_ENV=development PORT=3000 APIPORT=3030 node webpack/webpack-dev-server.js", |
37 | 37 | "build": "cross-env NODE_ENV=production webpack --colors --display-error-details --config=webpack/prod.config.js", |
38 | | - "build-dlls": "webpack --colors --display-error-details --config webpack/vendor.config.js", |
39 | | - "postinstall": "concurrently \"yarn build\" \"yarn build-dlls\"", |
| 38 | + "postinstall": "yarn build", |
40 | 39 | "prettier": "prettier-eslint --write --eslint-config-path .eslintrc '**/*.js'", |
41 | 40 | "lint": "eslint .", |
42 | 41 | "test": "cross-env NODE_PATH=src jest src", |
|
47 | 46 | "docker-down": "docker-compose down" |
48 | 47 | }, |
49 | 48 | "dependencies": { |
50 | | - "@babel/core": "^7.0.0", |
51 | | - "@babel/plugin-proposal-class-properties": "^7.0.0", |
52 | | - "@babel/plugin-proposal-decorators": "^7.0.0", |
53 | | - "@babel/plugin-proposal-do-expressions": "^7.0.0", |
54 | | - "@babel/plugin-proposal-export-default-from": "^7.0.0", |
55 | | - "@babel/plugin-proposal-export-namespace-from": "^7.0.0", |
56 | | - "@babel/plugin-proposal-function-bind": "^7.0.0", |
57 | | - "@babel/plugin-proposal-function-sent": "^7.0.0", |
58 | | - "@babel/plugin-proposal-json-strings": "^7.0.0", |
59 | | - "@babel/plugin-proposal-logical-assignment-operators": "^7.0.0", |
60 | | - "@babel/plugin-proposal-nullish-coalescing-operator": "^7.0.0", |
61 | | - "@babel/plugin-proposal-numeric-separator": "^7.0.0", |
62 | | - "@babel/plugin-proposal-optional-chaining": "^7.0.0", |
63 | | - "@babel/plugin-proposal-pipeline-operator": "^7.0.0", |
64 | | - "@babel/plugin-proposal-throw-expressions": "^7.0.0", |
65 | | - "@babel/plugin-syntax-dynamic-import": "^7.0.0", |
66 | | - "@babel/plugin-syntax-import-meta": "^7.0.0", |
67 | | - "@babel/plugin-transform-runtime": "^7.0.0", |
68 | | - "@babel/polyfill": "^7.0.0", |
69 | | - "@babel/preset-env": "^7.0.0", |
70 | | - "@babel/preset-react": "^7.0.0", |
71 | | - "@babel/register": "^7.0.0", |
72 | | - "@babel/runtime-corejs2": "^7.0.0", |
| 49 | + "@babel/register": "^7.4.0", |
| 50 | + "@babel/runtime-corejs3": "^7.4.3", |
73 | 51 | "@feathersjs/authentication": "^2.1.0", |
74 | 52 | "@feathersjs/authentication-client": "^1.0.1", |
75 | 53 | "@feathersjs/authentication-jwt": "^2.0.0", |
|
82 | 60 | "@feathersjs/socketio": "^3.0.1", |
83 | 61 | "@feathersjs/socketio-client": "^1.0.1", |
84 | 62 | "axios": "^0.18.0", |
85 | | - "babel-plugin-dynamic-import-node": "^2.0.0", |
86 | 63 | "body-parser": "^1.16.1", |
87 | 64 | "classnames": "^2.2.5", |
88 | 65 | "compression": "^1.6.2", |
89 | 66 | "cookie-parser": "^1.4.3", |
90 | 67 | "cookies": "^0.7.1", |
91 | 68 | "cookies-js": "^1.2.3", |
| 69 | + "core-js": "^3.0.1", |
92 | 70 | "express": "^4.15.4", |
93 | 71 | "express-session": "^1.15.5", |
94 | 72 | "feathers-authentication-hooks": "^0.3.0", |
|
128 | 106 | "redux-logger": "^3.0.6", |
129 | 107 | "redux-persist": "^5.3.4", |
130 | 108 | "redux-persist-cookie-storage": "^1.0.0", |
| 109 | + "regenerator-runtime": "^0.13.2", |
131 | 110 | "serialize-javascript": "^1.3.0", |
132 | 111 | "serve-favicon": "^2.3.2", |
133 | 112 | "socket.io-client": "^2.0.1" |
134 | 113 | }, |
135 | 114 | "devDependencies": { |
136 | | - "@babel/core": "^7.0.0", |
| 115 | + "@babel/core": "^7.4.3", |
| 116 | + "@babel/plugin-proposal-class-properties": "^7.4.0", |
| 117 | + "@babel/plugin-proposal-decorators": "^7.4.0", |
| 118 | + "@babel/plugin-proposal-do-expressions": "^7.2.0", |
| 119 | + "@babel/plugin-proposal-export-default-from": "^7.2.0", |
| 120 | + "@babel/plugin-proposal-export-namespace-from": "^7.2.0", |
| 121 | + "@babel/plugin-proposal-function-bind": "^7.2.0", |
| 122 | + "@babel/plugin-proposal-function-sent": "^7.2.0", |
| 123 | + "@babel/plugin-proposal-json-strings": "^7.2.0", |
| 124 | + "@babel/plugin-proposal-logical-assignment-operators": "^7.2.0", |
| 125 | + "@babel/plugin-proposal-nullish-coalescing-operator": "^7.4.3", |
| 126 | + "@babel/plugin-proposal-numeric-separator": "^7.2.0", |
| 127 | + "@babel/plugin-proposal-optional-chaining": "^7.2.0", |
| 128 | + "@babel/plugin-proposal-pipeline-operator": "^7.3.2", |
| 129 | + "@babel/plugin-proposal-throw-expressions": "^7.2.0", |
| 130 | + "@babel/plugin-syntax-dynamic-import": "^7.2.0", |
| 131 | + "@babel/plugin-syntax-import-meta": "^7.2.0", |
137 | 132 | "@babel/plugin-transform-react-jsx-source": "^7.0.0", |
| 133 | + "@babel/plugin-transform-runtime": "^7.4.3", |
| 134 | + "@babel/preset-env": "^7.4.3", |
| 135 | + "@babel/preset-react": "^7.0.0", |
138 | 136 | "babel-core": "^7.0.0-bridge.0", |
139 | 137 | "babel-eslint": "^10.0.1", |
140 | 138 | "babel-jest": "^23.0.0", |
141 | 139 | "babel-loader": "^8.0.0", |
| 140 | + "babel-plugin-dynamic-import-node": "^2.2.0", |
142 | 141 | "bootstrap-loader": "^2.1.0", |
143 | 142 | "bootstrap-sass": "^3.3.7", |
144 | 143 | "chai": "^4.1.1", |
|
155 | 154 | "extract-text-webpack-plugin": "^4.0.0-beta.0", |
156 | 155 | "file-loader": "^2.0.0", |
157 | 156 | "font-awesome": "^4.7.0", |
158 | | - "happypack": "^5.0.0", |
159 | 157 | "html-webpack-plugin": "^3.1.0", |
160 | | - "husky": "^1.0.0-rc.2", |
| 158 | + "husky": "^1.3.1", |
161 | 159 | "identity-obj-proxy": "^3.0.0", |
162 | 160 | "jest": "^23.0.0", |
163 | 161 | "jest-cli": "^23.0.0", |
|
0 commit comments