-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
80 lines (79 loc) · 3.29 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
{
"name": "comify",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite --host",
"copy-assets": "cpx src/assets/**/* dist/assets",
"build": "npm run build-domain && npm run build-webui",
"build-domain": "rm -rf dist && tsc -p tsconfig.jitar.json && tsc-alias -p tsconfig.jitar.json && jitar build && npm run copy-assets",
"build-webui": "vite build",
"compile": "tsc -p tsconfig.compile.json",
"clean": "rm -rf dist",
"docker-up": "docker compose --env-file development.env up",
"docker-down": "docker compose --env-file development.env down",
"preview": "vite preview",
"test": "vitest run",
"test-coverage": "vitest run --coverage",
"lint": "eslint",
"changelog": "auto-changelog --template changelog.hbs -p -u --commit-limit false --hide-empty-releases true",
"changelog-debug": "auto-changelog --template changelog.hbs -p --template json --output changelog-data.json",
"review": "npm run compile && npm run lint && npm run test",
"rebuild": "npm run clean && npm run build && npm run standalone",
"standalone": "jitar start --env-file=development.env --service=services/standalone.json --http-body-limit=512000",
"repository": "jitar start --env-file=development.env --service=services/repository.json",
"proxy": "jitar start --env-file=development.env --service=services/proxy.json --http-body-limit=512000",
"gateway": "jitar start --env-file=development.env --service=services/gateway.json --http-body-limit=640000",
"bff": "jitar start --env-file=development.env --service=services/bff.json --http-body-limit=640000",
"notification": "jitar start --env-file=development.env --service=services/notification.json --http-body-limit=640000",
"notification2": "jitar start --env-file=development.env --service=services/notification2.json --http-body-limit=640000",
"reads": "jitar start --env-file=development.env --service=services/reads.json --http-body-limit=640000",
"writes": "jitar start --env-file=development.env --service=services/writes.json --http-body-limit=640000"
},
"files": [
"CHANGELOG.md",
"README.md",
"dist"
],
"dependencies": {
"dayjs": "^1.11.13",
"jitar": "^0.9.0",
"minio": "^8.0.4",
"mongodb": "^6.13.0",
"openid-client": "^6.1.7",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"react-router-dom": "^7.1.5",
"sanitize-html": "^2.14.0",
"web-push": "^3.6.7",
"zod": "^3.24.1"
},
"devDependencies": {
"@jitar/plugin-vite": "^0.9.0",
"@types/node": "22.13.0",
"@types/react": "^19.0.8",
"@types/react-dom": "^19.0.4",
"@types/sanitize-html": "^2.13.0",
"@types/web-push": "^3.6.4",
"@typescript-eslint/eslint-plugin": "^8.22.0",
"@vitejs/plugin-react": "^4.3.4",
"@vitest/coverage-v8": "^3.0.5",
"auto-changelog": "^2.5.0",
"cpx2": "^8.0.0",
"eslint": "^9.19.0",
"eslint-plugin-react": "^7.37.4",
"eslint-plugin-react-hooks": "^5.1.0",
"eslint-plugin-sonarjs": "^3.0.1",
"tsc-alias": "^1.8.10",
"typescript": "^5.7.3",
"typescript-eslint": "^8.22.0",
"vite": "^6.0.11",
"vite-plugin-pwa": "^0.21.1",
"vite-tsconfig-paths": "^5.1.4",
"vitest": "^3.0.5"
},
"optionalDependencies": {
"@rollup/rollup-linux-x64-gnu": "^4.32.1"
}
}