-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 3.44 KB
/
package.json
File metadata and controls
80 lines (80 loc) · 3.44 KB
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": "tumaet",
"version": "1.0.0",
"description": "",
"private": true,
"workspaces": [
"standalone/*",
"library"
],
"scripts": {
"build": "npm run build:lib && concurrently \"npm run build:server\" \"npm run build:webapp\"",
"build:lib": "npm run build --workspace=@tumaet/apollon",
"build:server": "npm run build --workspace=@tumaet/server",
"build:webapp": "npm run build --workspace=@tumaet/webapp",
"dev": "concurrently -n lib,server,webapp -c yellow,blue,magenta \"npm run dev:lib\" \"npm run dev:server\" \"npm run dev:webapp\"",
"dev:lib": "npm run build:watch --workspace=@tumaet/apollon",
"dev:server": "npm run dev --workspace=@tumaet/server",
"dev:webapp": "npm run start --workspace=@tumaet/webapp",
"start": "concurrently \"npm run start:server\" \"npm run start:webapp\"",
"start:server": "npm run start --workspace=@tumaet/server",
"start:webapp": "npm run start --workspace=@tumaet/webapp",
"start:webapp:host": "npm run start:host --workspace=@tumaet/webapp",
"start:localdb": "docker-compose -f docker/compose.local.db.yml up -d ",
"lint": "concurrently \"npm run lint:lib\" \"npm run lint:server\" \"npm run lint:webapp\"",
"lint:lib": "npm run lint --workspace=@tumaet/apollon",
"lint:server": "npm run lint --workspace=@tumaet/server",
"lint:webapp": "npm run lint --workspace=@tumaet/webapp",
"lint:fix": "concurrently \"npm run lint:fix:lib\" \"npm run lint:fix:server\" \"npm run lint:fix:webapp\"",
"lint:fix:lib": "npm run lint:fix --workspace=@tumaet/apollon",
"lint:fix:server": "npm run lint:fix --workspace=@tumaet/server",
"lint:fix:webapp": "npm run lint:fix --workspace=@tumaet/webapp",
"format": "prettier --ignore-path .prettierignore --write \"**/*.+(js|ts|tsx|json)\"",
"format:check": "prettier --ignore-path .prettierignore --check \"**/*.(js|ts|tsx|json)\"",
"test": "npm run test --workspace=@tumaet/apollon",
"test:e2e": "npm run test:e2e --workspace=@tumaet/webapp",
"preview": "husky",
"capacitor:add:android": "npx cap add android",
"capacitor:add:ios": "npx cap add ios",
"capacitor:sync": "npx cap sync",
"capacitor:open:android": "npx cap open android",
"capacitor:open:ios": "npx cap open ios",
"capacitor:assets:generate:ios": "npx capacitor-assets generate --ios",
"capacitor:assets:generate:android": "npx capacitor-assets generate --android",
"publish:library:patch": "./scripts/publish-library-patch.sh",
"publish:library:minor": "./scripts/publish-library-minor.sh"
},
"license": "MIT",
"engines": {
"node": ">=22.14.0",
"npm": ">=11.1.0"
},
"devDependencies": {
"@commitlint/cli": "19.6.0",
"@commitlint/config-conventional": "19.6.0",
"@emotion/react": "11.11.1",
"@emotion/styled": "11.11.0",
"@resvg/resvg-js": "^2.6.2",
"@types/node": "22.13.1",
"@types/pdfmake": "^0.3.2",
"concurrently": "9.1.0",
"husky": "9.1.7",
"prettier": "3.4.2",
"vite": "6.3.4",
"yaml": "^2.4.2"
},
"dependencies": {
"@capacitor/android": "^8.0.0",
"@capacitor/assets": "3.0.5",
"@capacitor/cli": "^8.0.0",
"@capacitor/core": "^8.0.0",
"@capacitor/file-transfer": "^2.0.0",
"@capacitor/filesystem": "^8.0.0",
"@capacitor/ios": "^8.0.0",
"@capacitor/share": "^8.0.0",
"@capacitor/splash-screen": "^8.0.0",
"@capacitor/status-bar": "^8.0.0",
"capacitor-plugin-safe-area": "4.0.0",
"iobuffer": "^6.0.1"
}
}