2021-09-10 13:26:11 +03:00
|
|
|
{
|
2022-09-21 11:08:25 +03:00
|
|
|
"name": "@hcengineering/pod-account",
|
2021-09-10 13:26:11 +03:00
|
|
|
"version": "0.6.0",
|
|
|
|
"main": "lib/index.js",
|
|
|
|
"author": "Anticrm Platform Contributors",
|
|
|
|
"license": "EPL-2.0",
|
|
|
|
"scripts": {
|
2022-11-15 05:51:46 +03:00
|
|
|
"start": "ts-node src/__start.ts",
|
2023-10-07 23:14:00 +03:00
|
|
|
"build": "tsc",
|
|
|
|
"build:watch": "tsc",
|
2021-09-10 13:26:11 +03:00
|
|
|
"lint:fix": "eslint --fix src",
|
2024-01-23 19:18:36 +03:00
|
|
|
"bundle": "esbuild src/__start.ts --bundle --define:process.env.MODEL_VERSION=$(node ../../common/scripts/show_version.js) --minify --platform=node > bundle.js",
|
2022-02-23 19:10:43 +03:00
|
|
|
"docker:build": "docker build -t hardcoreeng/account .",
|
|
|
|
"docker:staging": "../../common/scripts/docker_tag.sh hardcoreeng/account staging",
|
|
|
|
"docker:push": "../../common/scripts/docker_tag.sh hardcoreeng/account",
|
2023-09-19 14:11:28 +03:00
|
|
|
"run-local": "cross-env MONGO_URL=mongodb://localhost:27017 MINIO_ACCESS_KEY=minioadmi MINIO_SECRET_KEY=minioadmin MINIO_ENDPOINT=localhost SERVER_SECRET='secret' TRANSACTOR_URL=ws://localhost:3333 ts-node src/__start.ts",
|
2021-12-01 12:27:29 +03:00
|
|
|
"lint": "eslint src",
|
2023-10-24 19:00:18 +03:00
|
|
|
"format": "format src",
|
2023-10-07 13:38:21 +03:00
|
|
|
"test": "jest --passWithNoTests --silent"
|
2021-09-10 13:26:11 +03:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
2022-03-17 08:07:47 +03:00
|
|
|
"cross-env": "~7.0.3",
|
2023-01-09 08:35:54 +03:00
|
|
|
"@hcengineering/platform-rig": "^0.6.0",
|
2024-02-06 05:57:31 +03:00
|
|
|
"@types/node": "~20.11.16",
|
2023-11-20 13:01:43 +03:00
|
|
|
"@typescript-eslint/eslint-plugin": "^6.11.0",
|
2022-07-02 09:30:37 +03:00
|
|
|
"eslint-plugin-import": "^2.26.0",
|
2022-11-02 11:50:14 +03:00
|
|
|
"eslint-plugin-promise": "^6.1.1",
|
|
|
|
"eslint-plugin-n": "^15.4.0",
|
2023-11-20 13:01:43 +03:00
|
|
|
"eslint": "^8.54.0",
|
2023-01-06 10:31:30 +03:00
|
|
|
"esbuild": "^0.16.14",
|
2021-12-01 12:27:29 +03:00
|
|
|
"@types/koa-bodyparser": "^4.3.3",
|
|
|
|
"@types/koa-router": "^7.4.4",
|
|
|
|
"@types/koa": "^2.13.4",
|
|
|
|
"@types/koa__cors": "^3.0.3",
|
2023-11-20 13:01:43 +03:00
|
|
|
"@typescript-eslint/parser": "^6.11.0",
|
|
|
|
"eslint-config-standard-with-typescript": "^40.0.0",
|
|
|
|
"prettier": "^3.1.0",
|
2022-06-03 19:44:11 +03:00
|
|
|
"ts-node": "^10.8.0",
|
2023-10-07 23:14:00 +03:00
|
|
|
"typescript": "^5.2.2",
|
2023-10-07 13:38:21 +03:00
|
|
|
"jest": "^29.7.0",
|
|
|
|
"ts-jest": "^29.1.1",
|
2023-11-20 13:01:43 +03:00
|
|
|
"@types/jest": "^29.5.5",
|
|
|
|
"prettier-plugin-svelte": "^3.1.0"
|
2021-09-10 13:26:11 +03:00
|
|
|
},
|
|
|
|
"dependencies": {
|
2023-01-09 08:35:54 +03:00
|
|
|
"@hcengineering/account": "^0.6.0",
|
2023-05-04 08:12:11 +03:00
|
|
|
"@hcengineering/platform": "^0.6.9",
|
2023-11-27 12:13:14 +03:00
|
|
|
"@hcengineering/core": "^0.6.28",
|
2024-01-30 10:47:54 +03:00
|
|
|
"mongodb": "^6.3.0",
|
2021-12-01 12:27:29 +03:00
|
|
|
"koa": "^2.13.1",
|
2023-12-04 19:03:21 +03:00
|
|
|
"koa-router": "^12.0.1",
|
2021-12-01 12:27:29 +03:00
|
|
|
"koa-bodyparser": "^4.3.0",
|
2022-01-24 21:30:13 +03:00
|
|
|
"@koa/cors": "^3.1.0",
|
2023-01-09 08:35:54 +03:00
|
|
|
"@hcengineering/server-tool": "^0.6.0",
|
2023-11-27 12:13:14 +03:00
|
|
|
"@hcengineering/server-token": "^0.6.7",
|
2023-01-09 08:35:54 +03:00
|
|
|
"@hcengineering/model-all": "^0.6.0"
|
2021-09-10 13:26:11 +03:00
|
|
|
}
|
|
|
|
}
|