mirror of
https://github.com/hcengineering/platform.git
synced 2025-03-15 10:37:52 +00:00

Some checks are pending
CI / build (push) Waiting to run
CI / svelte-check (push) Blocked by required conditions
CI / formatting (push) Blocked by required conditions
CI / test (push) Blocked by required conditions
CI / uitest (push) Waiting to run
CI / uitest-pg (push) Waiting to run
CI / uitest-qms (push) Waiting to run
CI / docker-build (push) Blocked by required conditions
CI / dist-build (push) Blocked by required conditions
Signed-off-by: Andrey Sobolev <haiodo@gmail.com>
54 lines
2.2 KiB
JSON
54 lines
2.2 KiB
JSON
{
|
|
"name": "@hcengineering/green",
|
|
"version": "0.6.0",
|
|
"main": "lib/index.js",
|
|
"svelte": "src/index.ts",
|
|
"types": "types/index.d.ts",
|
|
"author": "Anticrm Platform Contributors",
|
|
"template": "@hcengineering/node-package",
|
|
"license": "EPL-2.0",
|
|
"scripts": {
|
|
"build": "compile",
|
|
"build:watch": "compile",
|
|
"_phase:bundle": "rushx bundle",
|
|
"_phase:docker-build": "rushx docker:build",
|
|
"_phase:docker-staging": "rushx docker:staging",
|
|
"bundle": "node ../../common/scripts/esbuild.js --keep-names=true --bundle=true --external=*.node --external=snappy --sourcemap=external",
|
|
"docker:build": "../../common/scripts/docker_build.sh hardcoreeng/green",
|
|
"docker:tbuild": "docker build -t hardcoreeng/green . --platform=linux/amd64 && ../../common/scripts/docker_tag_push.sh hardcoreeng/green",
|
|
"docker:abuild": "docker build -t hardcoreeng/green . --platform=linux/arm64 && ../../common/scripts/docker_tag_push.sh hardcoreeng/green",
|
|
"docker:staging": "../../common/scripts/docker_tag.sh hardcoreeng/green staging",
|
|
"docker:push": "../../common/scripts/docker_tag.sh hardcoreeng/green",
|
|
"start": "rushx bundle && node --expose-gc --max-old-space-size=8000 ./bundle/bundle.js",
|
|
"format": "format src",
|
|
"test": "jest --passWithNoTests --silent --forceExit",
|
|
"_phase:build": "compile transpile src",
|
|
"_phase:test": "jest --passWithNoTests --silent --forceExit",
|
|
"_phase:format": "format src",
|
|
"_phase:validate": "compile validate"
|
|
},
|
|
"devDependencies": {
|
|
"cross-env": "~7.0.3",
|
|
"@hcengineering/platform-rig": "^0.6.0",
|
|
"@types/node": "~20.11.16",
|
|
"@typescript-eslint/eslint-plugin": "^6.11.0",
|
|
"eslint-plugin-import": "^2.26.0",
|
|
"eslint-plugin-promise": "^6.1.1",
|
|
"eslint-plugin-n": "^15.4.0",
|
|
"eslint": "^8.54.0",
|
|
"esbuild": "^0.24.2",
|
|
"@typescript-eslint/parser": "^6.11.0",
|
|
"eslint-config-standard-with-typescript": "^40.0.0",
|
|
"prettier": "^3.1.0",
|
|
"typescript": "^5.3.3",
|
|
"@hcengineering/model-all": "^0.6.0",
|
|
"jest": "^29.7.0",
|
|
"ts-jest": "^29.1.1",
|
|
"@types/jest": "^29.5.5"
|
|
},
|
|
"dependencies": {
|
|
"postgres": "^3.4.5",
|
|
"snappy": "^7.2.2"
|
|
}
|
|
}
|