mirror of
https://github.com/Start9Labs/start-os.git
synced 2026-03-26 10:21:52 +00:00
* Update README.md * updated readme assets * delete deprecated lifeline * update contributing guide and delete old build guides/notes * fix typos * update ui formatting recommendation * update readmes and contributing guide with build steps and dependencies * add script to install sdk Co-authored-by: Lucy Cifferello <12953208+elvece@users.noreply.github.com>
69 lines
2.0 KiB
JSON
69 lines
2.0 KiB
JSON
{
|
|
"name": "embassy-ui",
|
|
"version": "0.3.0",
|
|
"description": "GUI for EmbassyOS",
|
|
"author": "Start9 Labs",
|
|
"homepage": "https://github.com/Start9Labs/embassy-ui",
|
|
"scripts": {
|
|
"ng": "ng",
|
|
"start": "ng serve",
|
|
"build": "ng build",
|
|
"build-prod": "ng build --configuration production && tsc postprocess.ts && node postprocess.js && git log | head -n1 > www/git-hash.txt",
|
|
"build-deps": "cd ../patch-db/client && npm --prefix . install && npm run build",
|
|
"lint": "ng lint"
|
|
},
|
|
"dependencies": {
|
|
"@angular/common": "^12.2.4",
|
|
"@angular/core": "^12.2.4",
|
|
"@angular/forms": "^12.2.4",
|
|
"@angular/platform-browser": "^12.2.4",
|
|
"@angular/platform-browser-dynamic": "^12.2.4",
|
|
"@angular/router": "^12.2.4",
|
|
"@ionic/angular": "^5.7.0",
|
|
"@ionic/storage-angular": "^3.0.6",
|
|
"@start9labs/argon2": "^0.1.0",
|
|
"@start9labs/emver": "^0.1.5",
|
|
"ajv": "^6.12.6",
|
|
"ansi-to-html": "^0.7.2",
|
|
"core-js": "^3.17.2",
|
|
"dompurify": "^2.3.3",
|
|
"fast-json-patch": "^3.1.0",
|
|
"fuse.js": "^6.4.6",
|
|
"marked": "3.0.2",
|
|
"mustache": "^4.2.0",
|
|
"ng-qrcode": "^5.0.0",
|
|
"patch-db-client": "file: ../../../patch-db/client",
|
|
"rxjs": "^6.6.7",
|
|
"uuid": "^8.3.2",
|
|
"zone.js": "^0.11.4"
|
|
},
|
|
"lint-staged": {
|
|
"*.{js,ts,html,md,less,json}": [
|
|
"prettier --write",
|
|
"git add"
|
|
],
|
|
"*.ts": "tslint"
|
|
},
|
|
"devDependencies": {
|
|
"@angular-devkit/build-angular": "^12.2.4",
|
|
"@angular/cli": "^12.2.4",
|
|
"@angular/compiler": "^12.2.4",
|
|
"@angular/compiler-cli": "^12.2.4",
|
|
"@angular/language-service": "^12.2.4",
|
|
"@ionic/angular-toolkit": "^4.0.0",
|
|
"@types/json-pointer": "^1.0.31",
|
|
"@types/marked": "^3.0.0",
|
|
"@types/mustache": "^4.1.2",
|
|
"@types/node": "^16.7.13",
|
|
"@types/uuid": "^8.3.1",
|
|
"husky": "^4.3.8",
|
|
"lint-staged": "^12.1.2",
|
|
"node-html-parser": "^4.1.4",
|
|
"prettier": "^2.5.1",
|
|
"raw-loader": "^4.0.2",
|
|
"ts-node": "^10.2.0",
|
|
"tslint": "^6.1.3",
|
|
"typescript": "4.3.5"
|
|
}
|
|
}
|