Signed-off-by: Andrey Platov <andrey@hardcoreeng.com>
This commit is contained in:
Andrey Platov 2021-08-04 23:17:53 +02:00
parent 6aa35782c7
commit 47938f8546
No known key found for this signature in database
GPG Key ID: C8787EFEB4B64AF0
13 changed files with 33 additions and 40 deletions

View File

@ -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" ]

View File

@ -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",

View File

@ -7,6 +7,6 @@
"start": "node ./index.js"
},
"dependencies": {
"@anticrm/dev-server": "^0.6.3"
"@anticrm/dev-server": "^0.6.4"
}
}

View File

@ -6,7 +6,6 @@
"license": "EPL-2.0",
"scripts": {
"build": "heft build",
"start": "node lib/index.js",
"lint:fix": "eslint --fix src"
},
"devDependencies": {

View File

@ -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

View File

@ -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",

View File

@ -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

View File

@ -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"
}
}

View File

@ -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

View File

@ -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",

View File

@ -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

View File

@ -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",

View File

@ -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