2021-08-28 23:31:45 +03:00
|
|
|
{
|
2022-09-21 11:08:25 +03:00
|
|
|
"name": "@hcengineering/front",
|
2021-08-28 23:31:45 +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",
|
2024-06-05 08:46:40 +03:00
|
|
|
"files": [
|
|
|
|
"lib/**/*",
|
|
|
|
"types/**/*",
|
|
|
|
"tsconfig.json"
|
|
|
|
],
|
2021-08-28 23:31:45 +03:00
|
|
|
"author": "Anticrm Platform Contributors",
|
|
|
|
"license": "EPL-2.0",
|
|
|
|
"scripts": {
|
2024-02-12 19:57:11 +03:00
|
|
|
"build": "compile",
|
|
|
|
"build:watch": "compile",
|
2023-10-24 19:00:18 +03:00
|
|
|
"format": "format src",
|
2024-02-12 19:57:11 +03:00
|
|
|
"test": "jest --passWithNoTests --silent",
|
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",
|
2024-02-23 08:37:22 +03:00
|
|
|
"_phase:format": "format src",
|
|
|
|
"_phase:validate": "compile validate"
|
2021-08-28 23:31:45 +03:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
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",
|
|
|
|
"@typescript-eslint/parser": "^6.11.0",
|
|
|
|
"eslint-config-standard-with-typescript": "^40.0.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-n": "^15.4.0",
|
|
|
|
"eslint-plugin-promise": "^6.1.1",
|
2023-11-20 13:01:43 +03:00
|
|
|
"eslint": "^8.54.0",
|
2021-12-01 12:27:29 +03:00
|
|
|
"@types/express": "^4.17.13",
|
|
|
|
"@types/express-fileupload": "^1.1.7",
|
|
|
|
"@types/uuid": "^8.3.1",
|
|
|
|
"@types/cors": "^2.8.12",
|
2023-11-20 13:01:43 +03:00
|
|
|
"prettier": "^3.1.0",
|
2024-02-12 19:57:11 +03:00
|
|
|
"typescript": "^5.3.3",
|
2022-03-01 06:31:47 +03:00
|
|
|
"@types/body-parser": "~1.19.2",
|
|
|
|
"cross-env": "~7.0.3",
|
2022-06-03 19:44:11 +03:00
|
|
|
"ts-node": "^10.8.0",
|
2023-12-08 18:13:49 +03:00
|
|
|
"@types/sharp": "~0.32.0",
|
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",
|
2024-03-21 11:44:27 +03:00
|
|
|
"@types/morgan": "~1.9.9"
|
2021-08-28 23:31:45 +03:00
|
|
|
},
|
|
|
|
"dependencies": {
|
2024-06-05 08:46:40 +03:00
|
|
|
"@hcengineering/core": "^0.6.32",
|
|
|
|
"@hcengineering/platform": "^0.6.11",
|
2024-03-04 17:03:35 +03:00
|
|
|
"express": "^4.18.3",
|
|
|
|
"express-fileupload": "^1.4.3",
|
2024-03-15 18:30:50 +03:00
|
|
|
"express-static-gzip": "^2.1.7",
|
2021-12-01 12:27:29 +03:00
|
|
|
"uuid": "^8.3.2",
|
|
|
|
"cors": "^2.8.5",
|
2023-01-09 08:35:54 +03:00
|
|
|
"@hcengineering/elastic": "^0.6.0",
|
|
|
|
"@hcengineering/server-core": "^0.6.1",
|
2024-05-17 13:08:30 +03:00
|
|
|
"@hcengineering/storage": "^0.6.0",
|
2024-05-15 08:50:10 +03:00
|
|
|
"@hcengineering/server-storage": "^0.6.0",
|
2024-06-05 08:46:40 +03:00
|
|
|
"@hcengineering/server-token": "^0.6.11",
|
|
|
|
"@hcengineering/attachment": "^0.6.14",
|
2024-03-04 17:03:35 +03:00
|
|
|
"body-parser": "^1.20.2",
|
2023-12-08 18:13:49 +03:00
|
|
|
"sharp": "~0.32.0",
|
2023-12-25 15:11:08 +03:00
|
|
|
"@hcengineering/minio": "^0.6.0",
|
2024-04-02 10:05:16 +03:00
|
|
|
"@hcengineering/mongo": "^0.6.1",
|
2024-04-12 08:23:32 +03:00
|
|
|
"morgan": "^1.10.0",
|
|
|
|
"@hcengineering/analytics": "^0.6.0"
|
2021-08-28 23:31:45 +03:00
|
|
|
}
|
|
|
|
}
|