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",
|
2024-02-23 08:37:22 +03:00
|
|
|
"svelte": "src/index.ts",
|
|
|
|
"types": "types/index.d.ts",
|
2021-09-10 13:26:11 +03:00
|
|
|
"author": "Anticrm Platform Contributors",
|
2024-02-12 19:57:11 +03:00
|
|
|
"template": "@hcengineering/node-package",
|
2024-02-23 08:37:22 +03:00
|
|
|
"license": "EPL-2.0",
|
2021-09-10 13:26:11 +03:00
|
|
|
"scripts": {
|
2022-11-15 05:51:46 +03:00
|
|
|
"start": "ts-node src/__start.ts",
|
2024-02-12 19:57:11 +03:00
|
|
|
"build": "compile",
|
|
|
|
"build:watch": "compile",
|
|
|
|
"_phase:bundle": "rushx bundle",
|
|
|
|
"_phase:docker-build": "rushx docker:build",
|
|
|
|
"_phase:docker-staging": "rushx docker:staging",
|
2024-08-06 17:36:03 +03:00
|
|
|
"bundle": "mkdir -p bundle && esbuild src/__start.ts --sourcemap=inline --external:*.node --external:snappy --bundle --define:process.env.MODEL_VERSION=$(node ../../common/scripts/show_version.js) --minify --platform=node > bundle/bundle.js",
|
2024-03-08 20:09:38 +03:00
|
|
|
"docker:build": "../../common/scripts/docker_build.sh hardcoreeng/account",
|
2024-07-31 11:57:20 +03:00
|
|
|
"docker:tbuild": "docker build -t hardcoreeng/account . --platform=linux/amd64 && ../../common/scripts/docker_tag_push.sh hardcoreeng/account",
|
2024-08-02 17:14:49 +03:00
|
|
|
"docker:abuild": "docker build -t hardcoreeng/account . --platform=linux/arm64 && ../../common/scripts/docker_tag_push.sh hardcoreeng/account",
|
2022-02-23 19:10:43 +03:00
|
|
|
"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",
|
2023-10-24 19:00:18 +03:00
|
|
|
"format": "format src",
|
2024-02-12 19:57:11 +03:00
|
|
|
"test": "jest --passWithNoTests --silent --forceExit",
|
2024-02-23 08:37:22 +03:00
|
|
|
"_phase:build": "compile transpile src",
|
2024-02-12 19:57:11 +03:00
|
|
|
"_phase:test": "jest --passWithNoTests --silent --forceExit",
|
2024-02-23 08:37:22 +03:00
|
|
|
"_phase:format": "format src",
|
|
|
|
"_phase:validate": "compile validate"
|
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",
|
2024-02-16 09:20:03 +03:00
|
|
|
"esbuild": "^0.20.0",
|
2024-07-18 21:04:48 +03:00
|
|
|
"@types/koa-bodyparser": "^4.3.12",
|
|
|
|
"@types/koa-router": "^7.4.8",
|
|
|
|
"@types/koa": "^2.15.0",
|
|
|
|
"@types/koa__cors": "^5.0.0",
|
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",
|
2024-02-12 19:57:11 +03:00
|
|
|
"typescript": "^5.3.3",
|
2023-10-07 13:38:21 +03:00
|
|
|
"jest": "^29.7.0",
|
|
|
|
"ts-jest": "^29.1.1",
|
2024-03-15 12:33:12 +03:00
|
|
|
"@types/jest": "^29.5.5"
|
2021-09-10 13:26:11 +03:00
|
|
|
},
|
|
|
|
"dependencies": {
|
2023-01-09 08:35:54 +03:00
|
|
|
"@hcengineering/account": "^0.6.0",
|
2024-04-19 07:20:49 +03:00
|
|
|
"@hcengineering/account-service": "^0.6.0",
|
2024-06-05 08:46:40 +03:00
|
|
|
"@hcengineering/platform": "^0.6.11",
|
2024-02-28 11:17:02 +03:00
|
|
|
"@hcengineering/auth-providers": "^0.6.0",
|
2024-06-05 08:46:40 +03:00
|
|
|
"@hcengineering/core": "^0.6.32",
|
2024-06-28 18:21:28 +03:00
|
|
|
"mongodb": "^6.8.0",
|
2024-07-18 21:04:48 +03:00
|
|
|
"koa": "^2.15.3",
|
2023-12-04 19:03:21 +03:00
|
|
|
"koa-router": "^12.0.1",
|
2024-07-18 21:04:48 +03:00
|
|
|
"koa-bodyparser": "^4.4.1",
|
|
|
|
"@koa/cors": "^5.0.0",
|
2024-06-05 08:46:40 +03:00
|
|
|
"@hcengineering/server-token": "^0.6.11",
|
2024-06-20 16:13:57 +03:00
|
|
|
"@hcengineering/server-core": "^0.6.1",
|
2024-07-27 18:04:21 +03:00
|
|
|
"@hcengineering/model-all": "^0.6.0",
|
|
|
|
"@hcengineering/analytics": "^0.6.0",
|
|
|
|
"@hcengineering/analytics-service": "^0.6.0"
|
2021-09-10 13:26:11 +03:00
|
|
|
}
|
|
|
|
}
|