2021-09-10 13:26:11 +03:00
|
|
|
{
|
|
|
|
"name": "@anticrm/pod-account",
|
|
|
|
"version": "0.6.0",
|
|
|
|
"main": "lib/index.js",
|
|
|
|
"author": "Anticrm Platform Contributors",
|
|
|
|
"license": "EPL-2.0",
|
|
|
|
"scripts": {
|
|
|
|
"start": "ts-node src/index.ts",
|
|
|
|
"build": "heft build",
|
2021-11-17 16:29:26 +03:00
|
|
|
"build:watch": "tsc",
|
2021-09-10 13:26:11 +03:00
|
|
|
"lint:fix": "eslint --fix src",
|
|
|
|
"bundle": "esbuild src/index.ts --bundle --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",
|
2022-06-25 20:31:31 +03:00
|
|
|
"run-local": "cross-env MONGO_URL=mongodb://localhost:27017 MINIO_ACCESS_KEY=minioadmin MINIO_SECRET_KEY=minioadmin MINIO_ENDPOINT=localhost SERVER_SECRET='secret' TRANSACTOR_URL=ws:/localhost:3333 ts-node src/index.ts",
|
2021-12-01 12:27:29 +03:00
|
|
|
"lint": "eslint src",
|
|
|
|
"format": "prettier --write src && eslint --fix src"
|
2021-09-10 13:26:11 +03:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
2022-03-17 08:07:47 +03:00
|
|
|
"cross-env": "~7.0.3",
|
2021-12-01 12:27:29 +03:00
|
|
|
"@anticrm/platform-rig": "~0.6.0",
|
|
|
|
"@types/heft-jest": "^1.0.2",
|
2022-03-17 08:07:47 +03:00
|
|
|
"@types/node": "~16.11.12",
|
2022-04-29 08:27:17 +03:00
|
|
|
"@typescript-eslint/eslint-plugin": "^5.21.0",
|
2021-12-01 12:27:29 +03:00
|
|
|
"eslint-plugin-import": "^2.25.3",
|
|
|
|
"eslint-plugin-promise": "^5.1.1",
|
|
|
|
"eslint-plugin-node": "^11.1.0",
|
|
|
|
"eslint": "^7.32.0",
|
2022-03-17 08:07:47 +03:00
|
|
|
"esbuild": "^0.12.26",
|
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",
|
|
|
|
"@typescript-eslint/parser": "^5.4.0",
|
|
|
|
"eslint-config-standard-with-typescript": "^21.0.1",
|
|
|
|
"prettier": "^2.4.1",
|
2022-06-03 19:44:11 +03:00
|
|
|
"ts-node": "^10.8.0",
|
2022-06-02 05:26:14 +03:00
|
|
|
"@rushstack/heft": "^0.45.5",
|
2021-12-01 12:27:29 +03:00
|
|
|
"typescript": "^4.3.5"
|
2021-09-10 13:26:11 +03:00
|
|
|
},
|
|
|
|
"dependencies": {
|
2021-12-01 12:27:29 +03:00
|
|
|
"@anticrm/account": "~0.6.0",
|
2022-04-29 08:27:17 +03:00
|
|
|
"@anticrm/platform": "~0.6.6",
|
2021-12-01 12:27:29 +03:00
|
|
|
"mongodb": "^4.1.1",
|
|
|
|
"koa": "^2.13.1",
|
|
|
|
"koa-router": "^10.1.1",
|
|
|
|
"koa-bodyparser": "^4.3.0",
|
2022-01-24 21:30:13 +03:00
|
|
|
"@koa/cors": "^3.1.0",
|
2022-02-25 12:04:02 +03:00
|
|
|
"@anticrm/server-tool": "~0.6.0",
|
|
|
|
"@anticrm/server-token": "~0.6.0"
|
2021-09-10 13:26:11 +03:00
|
|
|
}
|
|
|
|
}
|