mirror of
https://gitlab.com/openstapps/openstapps.git
synced 2025-12-11 08:46:16 +00:00
refactor: update dependencies
This commit is contained in:
@@ -1,4 +1,4 @@
|
||||
FROM node:lts-alpine
|
||||
FROM registry.gitlab.com/openstapps/projectmanagement/node
|
||||
|
||||
ADD . /app
|
||||
WORKDIR /app
|
||||
|
||||
788
package-lock.json
generated
788
package-lock.json
generated
File diff suppressed because it is too large
Load Diff
32
package.json
32
package.json
@@ -16,18 +16,18 @@
|
||||
},
|
||||
"description": "Node.js library to interact with the StApps backend service",
|
||||
"dependencies": {
|
||||
"@krlwlfrt/async-pool": "0.1.0",
|
||||
"@krlwlfrt/async-pool": "0.2.0",
|
||||
"@openstapps/core": "0.31.0",
|
||||
"@openstapps/core-tools": "0.11.0",
|
||||
"@openstapps/logger": "0.4.0",
|
||||
"@types/cli-progress": "1.8.1",
|
||||
"@types/express": "4.17.1",
|
||||
"@types/express": "4.17.2",
|
||||
"@types/morgan": "1.7.37",
|
||||
"@types/node": "10.14.17",
|
||||
"@types/request": "2.48.2",
|
||||
"@types/node": "10.17.5",
|
||||
"@types/request": "2.48.3",
|
||||
"@types/traverse": "0.6.32",
|
||||
"@types/uuid": "3.4.5",
|
||||
"cli-progress": "3.1.0",
|
||||
"@types/uuid": "3.4.6",
|
||||
"cli-progress": "3.4.0",
|
||||
"commander": "3.0.1",
|
||||
"express": "4.17.1",
|
||||
"fast-clone": "1.5.13",
|
||||
@@ -41,27 +41,27 @@
|
||||
"license": "GPL-3.0-only",
|
||||
"devDependencies": {
|
||||
"@openstapps/configuration": "0.21.1",
|
||||
"@types/chai": "4.2.0",
|
||||
"@types/chai": "4.2.5",
|
||||
"@types/chai-as-promised": "7.1.2",
|
||||
"@types/chai-spies": "1.0.1",
|
||||
"@types/fs-extra": "^8.0.0",
|
||||
"@types/fs-extra": "8.0.1",
|
||||
"@types/mocha": "5.2.7",
|
||||
"@types/nock": "10.0.3",
|
||||
"chai": "4.2.0",
|
||||
"chai-as-promised": "7.1.1",
|
||||
"chai-spies": "1.0.0",
|
||||
"conventional-changelog-cli": "2.0.23",
|
||||
"fs-extra": "^8.1.0",
|
||||
"mocha": "6.2.0",
|
||||
"conventional-changelog-cli": "2.0.28",
|
||||
"fs-extra": "8.1.0",
|
||||
"mocha": "6.2.2",
|
||||
"mocha-typescript": "1.1.17",
|
||||
"nock": "10.0.6",
|
||||
"nyc": "14.1.1",
|
||||
"prepend-file-cli": "1.0.6",
|
||||
"rimraf": "3.0.0",
|
||||
"ts-node": "8.3.0",
|
||||
"tslint": "5.19.0",
|
||||
"typedoc": "0.15.0",
|
||||
"typescript": "3.6.2"
|
||||
"ts-node": "8.5.2",
|
||||
"tslint": "5.20.1",
|
||||
"typedoc": "0.15.3",
|
||||
"typescript": "3.7.2"
|
||||
},
|
||||
"author": "Karl-Philipp Wulfert <krlwlfrt@gmail.com>",
|
||||
"contributors": [
|
||||
@@ -74,7 +74,7 @@
|
||||
"Wieland Schöbl <wulkanat@gmail.com>"
|
||||
],
|
||||
"peerDependencies": {
|
||||
"@openstapps/core": "~0.23.1"
|
||||
"@openstapps/core": "~0.31.0"
|
||||
},
|
||||
"repository": {
|
||||
"type": "git",
|
||||
|
||||
@@ -12,7 +12,7 @@
|
||||
* You should have received a copy of the GNU General Public License along with
|
||||
* this program. If not, see <https://www.gnu.org/licenses/>.
|
||||
*/
|
||||
import {asyncPool} from '@krlwlfrt/async-pool';
|
||||
import {asyncPool} from '@krlwlfrt/async-pool/lib/async-pool';
|
||||
import {
|
||||
isThing,
|
||||
SCAssociatedThingWithoutReferences,
|
||||
|
||||
@@ -12,7 +12,7 @@
|
||||
* You should have received a copy of the GNU General Public License along with
|
||||
* this program. If not, see <https://www.gnu.org/licenses/>.
|
||||
*/
|
||||
import {asyncPool} from '@krlwlfrt/async-pool';
|
||||
import {asyncPool} from '@krlwlfrt/async-pool/lib/async-pool';
|
||||
import {SCSearchRequest, SCThingType} from '@openstapps/core';
|
||||
import {Bar} from 'cli-progress';
|
||||
import {Client} from './client';
|
||||
|
||||
@@ -12,7 +12,7 @@
|
||||
* You should have received a copy of the GNU General Public License along with
|
||||
* this program. If not, see <https://www.gnu.org/licenses/>.
|
||||
*/
|
||||
import {asyncPool} from '@krlwlfrt/async-pool';
|
||||
import {asyncPool} from '@krlwlfrt/async-pool/lib/async-pool';
|
||||
import {
|
||||
isThing,
|
||||
SCBulkAddResponse,
|
||||
|
||||
Reference in New Issue
Block a user