mirror of
https://github.com/hcengineering/platform.git
synced 2024-11-26 04:23:58 +03:00
fix
Signed-off-by: Andrey Platov <andrey@hardcoreeng.com>
This commit is contained in:
parent
6aa35782c7
commit
47938f8546
@ -3,10 +3,10 @@ FROM node:14
|
||||
WORKDIR /usr/src/app
|
||||
|
||||
COPY package.json ./
|
||||
COPY index.mjs ./
|
||||
|
||||
RUN npm install
|
||||
|
||||
COPY ./lib ./lib
|
||||
|
||||
EXPOSE 3333
|
||||
CMD [ "node", "lib/server.js" ]
|
||||
CMD [ "node", "index.mjs" ]
|
||||
|
36
cloud/dev-server/app/package-lock.json
generated
36
cloud/dev-server/app/package-lock.json
generated
@ -5,32 +5,32 @@
|
||||
"requires": true,
|
||||
"dependencies": {
|
||||
"@anticrm/core": {
|
||||
"version": "0.6.5",
|
||||
"resolved": "https://registry.npmjs.org/@anticrm/core/-/core-0.6.5.tgz",
|
||||
"integrity": "sha512-+Ap6OGh8o+79yGgYlxbZOoLeQ+bTPFH3B+r29yioFuqZ4M8E+k8gGgToZiYuyHZFI+pKLodwAoN8u347XqmYjA==",
|
||||
"version": "0.6.6",
|
||||
"resolved": "https://registry.npmjs.org/@anticrm/core/-/core-0.6.6.tgz",
|
||||
"integrity": "sha512-meVZkivRhe9RxbHz/xU69rdhPOIsQ4f+Bv1Edm5mifXT7zw8x6m6BZGtgWvRXoyHfBF9HbY1MjXcMGbkLFQrsg==",
|
||||
"requires": {
|
||||
"@anticrm/platform": "~0.6.1",
|
||||
"@anticrm/platform": "~0.6.2",
|
||||
"simplytyped": "^3.3.0"
|
||||
}
|
||||
},
|
||||
"@anticrm/dev-server": {
|
||||
"version": "0.6.3",
|
||||
"resolved": "https://registry.npmjs.org/@anticrm/dev-server/-/dev-server-0.6.3.tgz",
|
||||
"integrity": "sha512-g4Ugx4u/+m4ZSlvY6xgJcHOHK/WwZI6BVa90ziz5bCKaucuJ+vMGOR6k9EWS9pBLTI6TzKDieXU2ID8L1evYuw==",
|
||||
"version": "0.6.4",
|
||||
"resolved": "https://registry.npmjs.org/@anticrm/dev-server/-/dev-server-0.6.4.tgz",
|
||||
"integrity": "sha512-ftkMubfIMUrIXrvs94Lw7q3h2SZMFjOZlzp7KI0zg+82+mTlk9AArVslfF1/qkYa8tpEkcG6tpUgX0FJ2CTt5A==",
|
||||
"requires": {
|
||||
"@anticrm/core": "~0.6.5",
|
||||
"@anticrm/dev-storage": "~0.6.1",
|
||||
"@anticrm/core": "~0.6.6",
|
||||
"@anticrm/dev-storage": "~0.6.2",
|
||||
"@anticrm/platform": "~0.6.2",
|
||||
"@anticrm/server-ws": "~0.6.2"
|
||||
"@anticrm/server-ws": "~0.6.3"
|
||||
}
|
||||
},
|
||||
"@anticrm/dev-storage": {
|
||||
"version": "0.6.1",
|
||||
"resolved": "https://registry.npmjs.org/@anticrm/dev-storage/-/dev-storage-0.6.1.tgz",
|
||||
"integrity": "sha512-MSmHqp6O50FMYtisuDZdVFds6wslHYhypMZ4QN+DqRaDYWa+rkEIETW3FKs3YLaMvrPCHphcHI8ZCsHL3eX3ew==",
|
||||
"version": "0.6.2",
|
||||
"resolved": "https://registry.npmjs.org/@anticrm/dev-storage/-/dev-storage-0.6.2.tgz",
|
||||
"integrity": "sha512-wOErKrAifettQRx++g1WNuMxFVZbmQf/hevQrLNs1SATkbNVRJe2jY8G1mp8NA9/n+jwoNAlld801BNKnrqalg==",
|
||||
"requires": {
|
||||
"@anticrm/core": "~0.6.1",
|
||||
"@anticrm/platform": "~0.6.1"
|
||||
"@anticrm/core": "~0.6.6",
|
||||
"@anticrm/platform": "~0.6.2"
|
||||
}
|
||||
},
|
||||
"@anticrm/platform": {
|
||||
@ -42,9 +42,9 @@
|
||||
}
|
||||
},
|
||||
"@anticrm/server-ws": {
|
||||
"version": "0.6.2",
|
||||
"resolved": "https://registry.npmjs.org/@anticrm/server-ws/-/server-ws-0.6.2.tgz",
|
||||
"integrity": "sha512-vmwrqXj5y5COHX+BgaDgMYR4IKLf8jHNqL5sMquBDz42JVJAW6CkqskVg3JJ79sLo36r5MliR05za1pM1e11HQ==",
|
||||
"version": "0.6.3",
|
||||
"resolved": "https://registry.npmjs.org/@anticrm/server-ws/-/server-ws-0.6.3.tgz",
|
||||
"integrity": "sha512-kiPZnTgzkVxVlakcOmH8HMaPCjZX50jW39ZzlLd1r2qDJv548AZjPS3M1mb/qJkJoZhOXhUUavNUSjxfaYuggg==",
|
||||
"requires": {
|
||||
"@anticrm/platform": "~0.6.2",
|
||||
"jwt-simple": "^0.5.6",
|
||||
|
@ -7,6 +7,6 @@
|
||||
"start": "node ./index.js"
|
||||
},
|
||||
"dependencies": {
|
||||
"@anticrm/dev-server": "^0.6.3"
|
||||
"@anticrm/dev-server": "^0.6.4"
|
||||
}
|
||||
}
|
||||
|
@ -6,7 +6,6 @@
|
||||
"license": "EPL-2.0",
|
||||
"scripts": {
|
||||
"build": "heft build",
|
||||
"start": "node lib/index.js",
|
||||
"lint:fix": "eslint --fix src"
|
||||
},
|
||||
"devDependencies": {
|
||||
|
@ -1,6 +1,6 @@
|
||||
//
|
||||
// Copyright © 2020, 2021 Anticrm Platform Contributors.
|
||||
// Copyright © 2021 Hardcore Engineering Inc.
|
||||
// Copyright © 2021, 2022 Hardcore Engineering Inc.
|
||||
//
|
||||
// Licensed under the Eclipse Public License, Version 2.0 (the "License");
|
||||
// you may not use this file except in compliance with the License. You may
|
||||
|
@ -6,11 +6,7 @@
|
||||
"license": "EPL-2.0",
|
||||
"scripts": {
|
||||
"build": "heft build",
|
||||
"build:docs": "api-extractor run --local",
|
||||
"test": "jest",
|
||||
"lint": "ts-standard src",
|
||||
"lint:fix": "eslint --fix ./src",
|
||||
"format": "prettier --write 'src/**/*.{ts*,js*,yml}' && ts-standard --fix src"
|
||||
"lint:fix": "eslint --fix src"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@anticrm/platform-rig":"~0.6.0",
|
||||
|
@ -1,6 +1,6 @@
|
||||
//
|
||||
// Copyright © 2020, 2021 Anticrm Platform Contributors.
|
||||
// Copyright © 2021 Hardcore Engineering Inc.
|
||||
// Copyright © 2021, 2022 Hardcore Engineering Inc.
|
||||
//
|
||||
// Licensed under the Eclipse Public License, Version 2.0 (the "License");
|
||||
// you may not use this file except in compliance with the License. You may
|
||||
|
@ -6,11 +6,7 @@
|
||||
"license": "EPL-2.0",
|
||||
"scripts": {
|
||||
"build": "heft build",
|
||||
"build:docs": "api-extractor run --local",
|
||||
"test": "jest",
|
||||
"lint": "ts-standard src",
|
||||
"lint:fix": "eslint --fix ./src",
|
||||
"format": "prettier --write 'src/**/*.{ts*,js*,yml}' && ts-standard --fix src"
|
||||
"lint:fix": "eslint --fix src"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@anticrm/platform-rig":"~0.6.0",
|
||||
@ -19,10 +15,10 @@
|
||||
"eslint-plugin-import":"2",
|
||||
"eslint-plugin-promise":"4",
|
||||
"eslint-plugin-node":"11",
|
||||
"eslint":"^7.32.0"
|
||||
"eslint":"^7.32.0",
|
||||
"simplytyped": "^3.3.0"
|
||||
},
|
||||
"dependencies": {
|
||||
"@anticrm/platform": "~0.6.2",
|
||||
"simplytyped": "^3.3.0"
|
||||
"@anticrm/platform": "~0.6.2"
|
||||
}
|
||||
}
|
||||
|
@ -1,5 +1,6 @@
|
||||
//
|
||||
// Copyright © 2020, 2021 Anticrm Platform Contributors.
|
||||
// Copyright © 2021 Hardcore Engineering Inc.
|
||||
//
|
||||
// Licensed under the Eclipse Public License, Version 2.0 (the "License");
|
||||
// you may not use this file except in compliance with the License. You may
|
||||
|
@ -6,7 +6,7 @@
|
||||
"license": "EPL-2.0",
|
||||
"scripts": {
|
||||
"build": "heft build",
|
||||
"lint:fix": "eslint --fix ./src"
|
||||
"lint:fix": "eslint --fix src"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@anticrm/platform-rig":"~0.6.0",
|
||||
|
@ -1,5 +1,6 @@
|
||||
//
|
||||
// Copyright © 2020, 2021 Anticrm Platform Contributors.
|
||||
// Copyright © 2021 Hardcore Engineering Inc.
|
||||
//
|
||||
// Licensed under the Eclipse Public License, Version 2.0 (the "License");
|
||||
// you may not use this file except in compliance with the License. You may
|
||||
|
@ -6,7 +6,7 @@
|
||||
"license": "EPL-2.0",
|
||||
"scripts": {
|
||||
"build": "heft build",
|
||||
"lint:fix": "eslint --fix ./src"
|
||||
"lint:fix": "eslint --fix src"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@anticrm/platform-rig":"~0.6.0",
|
||||
|
@ -1,6 +1,6 @@
|
||||
//
|
||||
// Copyright © 2020, 2021 Anticrm Platform Contributors.
|
||||
// Copyright © 2021 Hardcore Engineering Inc.
|
||||
// Copyright © 2021, 2022 Hardcore Engineering Inc.
|
||||
//
|
||||
// Licensed under the Eclipse Public License, Version 2.0 (the "License");
|
||||
// you may not use this file except in compliance with the License. You may
|
||||
|
Loading…
Reference in New Issue
Block a user