Files
start-os/web/package.json
Matt Hill 2a8d8c7154 alpha.22
2026-03-20 08:37:36 -06:00

130 lines
4.9 KiB
JSON

{
"name": "startos-ui",
"version": "0.4.0-alpha.22",
"author": "Start9 Labs, Inc",
"homepage": "https://start9.com/",
"license": "MIT",
"scripts": {
"ng": "ng",
"check": "npm run check:i18n && npm run check:shared && npm run check:marketplace && npm run check:ui && npm run check:setup",
"check:shared": "tsc --project projects/shared/tsconfig.json --noEmit --skipLibCheck",
"check:marketplace": "tsc --project projects/marketplace/tsconfig.json --noEmit --skipLibCheck",
"check:setup": "tsc --project projects/setup-wizard/tsconfig.json --noEmit --skipLibCheck",
"check:ui": "tsc --project projects/ui/tsconfig.json --noEmit --skipLibCheck",
"check:tunnel": "tsc --project projects/start-tunnel/tsconfig.json --noEmit --skipLibCheck",
"check:i18n": "node scripts/check-i18n.mjs",
"build:deps": "rimraf .angular/cache && (cd ../sdk && make bundle) && (cd ../patch-db/client && npm ci && npm run build)",
"build:setup": "ng run setup-wizard:build",
"build:ui": "ng run ui:build",
"build:ui:dev": "ng run ui:build:development",
"build:tunnel": "ng run start-tunnel:build",
"build:all": "npm run build:deps && npm run build:setup && npm run build:ui",
"build:shared": "ng build shared",
"build:marketplace": "npm run build:shared && ng build marketplace",
"analyze:ui": "ng build ui --stats-json --named-chunks && npx -y @angular-experts/hawkeye dist/raw/ui/stats.json",
"publish:shared": "npm run build:shared && npm publish ./dist/shared --access public",
"publish:marketplace": "npm run build:marketplace && npm publish ./dist/marketplace --access public",
"start:setup": "npm run-script build-config && ng serve --project setup-wizard --host 0.0.0.0",
"start:ui": "npm run-script build-config && ng serve --project ui --host 0.0.0.0",
"start:tunnel": "ng serve --project start-tunnel --host 0.0.0.0",
"start:ui:proxy": "npm run-script build-config && ng serve --project ui --host 0.0.0.0 --proxy-config proxy.conf.json",
"build-config": "node build-config.js",
"format": "prettier --write projects/",
"format:check": "prettier --check projects/"
},
"dependencies": {
"@angular/cdk": "^21.2.1",
"@angular/common": "^21.2.1",
"@angular/compiler": "^21.2.1",
"@angular/core": "^21.2.1",
"@angular/forms": "^21.2.1",
"@angular/platform-browser": "^21.2.1",
"@angular/pwa": "^21.2.1",
"@angular/router": "^21.2.1",
"@angular/service-worker": "^21.2.1",
"@materia-ui/ngx-monaco-editor": "^6.0.0",
"@noble/curves": "^1.4.0",
"@noble/hashes": "^1.4.0",
"@start9labs/argon2": "^0.3.0",
"@start9labs/start-sdk": "file:../sdk/baseDist",
"@taiga-ui/addon-charts": "5.0.0-rc.4",
"@taiga-ui/addon-commerce": "5.0.0-rc.4",
"@taiga-ui/addon-mobile": "5.0.0-rc.4",
"@taiga-ui/addon-table": "5.0.0-rc.4",
"@taiga-ui/cdk": "5.0.0-rc.4",
"@taiga-ui/core": "5.0.0-rc.4",
"@taiga-ui/dompurify": "5.0.1",
"@taiga-ui/event-plugins": "5.0.0",
"@taiga-ui/experimental": "5.0.0-rc.4",
"@taiga-ui/icons": "5.0.0-rc.4",
"@taiga-ui/kit": "5.0.0-rc.4",
"@taiga-ui/layout": "5.0.0-rc.4",
"@taiga-ui/polymorpheus": "5.0.0",
"ansi-to-html": "^0.7.2",
"base64-js": "^1.5.1",
"buffer": "^6.0.3",
"cbor": "npm:@jprochazk/cbor@^0.4.9",
"cbor-web": "^8.1.0",
"core-js": "^3.42.0",
"cron": "^2.2.0",
"cronstrue": "^2.21.0",
"deep-equality-data-structures": "1.5.1",
"dompurify": "^3.3.2",
"fast-json-patch": "^3.1.1",
"fuse.js": "^6.4.6",
"jose": "^4.9.0",
"js-yaml": "^4.1.0",
"marked": "^4.0.0",
"mime": "^4.0.3",
"monaco-editor": "^0.33.0",
"mustache": "^4.2.0",
"ng-qrcode": "^21.0.0",
"node-jose": "^2.2.0",
"patch-db-client": "file:../patch-db/client",
"pbkdf2": "^3.1.2",
"rxjs": "^7.8.2",
"tldts": "^7.0.11",
"tslib": "^2.8.1",
"uuid": "^8.3.2",
"zone.js": "^0.15.0"
},
"devDependencies": {
"@angular-experts/hawkeye": "^1.7.2",
"@angular/build": "^21.2.1",
"@angular/cli": "^21.2.1",
"@angular/compiler-cli": "^21.2.1",
"@angular/language-service": "^21.2.1",
"@types/estree": "^0.0.51",
"@types/js-yaml": "^4.0.5",
"@types/marked": "^4.0.3",
"@types/mustache": "^4.2.6",
"@types/node": "^22.15.19",
"@types/node-jose": "^1.1.10",
"@types/pbkdf2": "^3.1.0",
"@types/uuid": "^8.3.1",
"husky": "^4.3.8",
"lint-staged": "^13.2.0",
"ng-packagr": "^21.2.0",
"node-html-parser": "^5.3.3",
"postcss": "^8.4.21",
"prettier": "^3.5.3",
"rimraf": "^6.0.1",
"ts-node": "^10.7.0",
"tslint": "^6.1.3",
"typescript": "^5.8.3"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged --concurrent false"
}
},
"prettier": {
"singleQuote": true,
"semi": false,
"arrowParens": "avoid",
"trailingComma": "all",
"htmlWhitespaceSensitivity": "ignore",
"tabWidth": 2
}
}