Files
start-os/frontend/package.json
Drew Ansbacher 0c0cd9d0a0 start9 marketplace config
shift not unshift

move eos updates to embassy tab

selected id sub

roughly working

keep name in sync in case of change

delete commented code

64 img
2022-02-09 10:18:22 -07:00

89 lines
3.1 KiB
JSON

{
"name": "embassy-os",
"version": "0.3.0",
"author": "Start9 Labs, Inc",
"homepage": "https://start9.com/",
"scripts": {
"ng": "ng",
"check": "npm run check:shared && npm run check:ui && npm run check:setup-wizard && npm run check:diagnostic-ui",
"check:shared": "tsc --project projects/shared/tsconfig.lib.json --noEmit --skipLibCheck",
"check:diagnostic-ui": "tsc --project projects/diagnostic-ui/tsconfig.json --noEmit --skipLibCheck",
"check:setup-wizard": "tsc --project projects/setup-wizard/tsconfig.json --noEmit --skipLibCheck",
"check:ui": "tsc --project projects/ui/tsconfig.json --noEmit --skipLibCheck",
"build:deps": "cd ../patch-db/client && npm install && npm run build",
"build:diagnostic-ui": "ng run diagnostic-ui:build",
"build:setup-wizard": "ng run setup-wizard:build",
"build:ui": "ng run ui:build && tsc projects/ui/postprocess.ts && node projects/ui/postprocess.js && git log | head -n1 > dist/ui/git-hash.txt",
"build:all": "npm run build:deps && npm run build:diagnostic-ui && npm run build:setup-wizard && npm run build:ui",
"start:diagnostic-ui": "ionic serve --project diagnostic-ui",
"start:setup-wizard": "ionic serve --project setup-wizard",
"start:ui": "ionic serve --project ui"
},
"dependencies": {
"@angular/animations": "^13.2.0",
"@angular/common": "^13.2.0",
"@angular/compiler": "^13.2.0",
"@angular/core": "^13.2.0",
"@angular/forms": "^13.2.0",
"@angular/platform-browser": "^13.2.0",
"@angular/platform-browser-dynamic": "^13.2.0",
"@angular/router": "^13.2.0",
"@ionic/angular": "^6.0.3",
"@ionic/storage-angular": "^3.0.6",
"@materia-ui/ngx-monaco-editor": "^6.0.0",
"@start9labs/argon2": "^0.1.0",
"@start9labs/emver": "^0.1.5",
"aes-js": "^3.1.2",
"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",
"js-yaml": "^4.1.0",
"marked": "^4.0.0",
"monaco-editor": "^0.32.0",
"mustache": "^4.2.0",
"ng-qrcode": "^6.0.0",
"patch-db-client": "file: ../../../patch-db/client",
"pbkdf2": "^3.1.2",
"rxjs": "^6.6.7",
"tslib": "^2.3.0",
"uuid": "^8.3.2",
"zone.js": "^0.11.4"
},
"devDependencies": {
"@angular-devkit/build-angular": "^13.1.4",
"@angular/cli": "^13.1.4",
"@angular/compiler-cli": "^13.2.0",
"@angular/language-service": "^13.2.0",
"@ionic/cli": "^6.18.1",
"@types/aes-js": "^3.1.1",
"@types/dompurify": "^2.3.3",
"@types/js-yaml": "^4.0.5",
"@types/marked": "^4.0.0",
"@types/mustache": "^4.1.2",
"@types/node": "^16.9.1",
"@types/pbkdf2": "^3.1.0",
"@types/uuid": "^8.3.1",
"husky": "^4.3.8",
"lint-staged": "^12.1.2",
"ng-packagr": "^13.0.0",
"node-html-parser": "^5.0.0",
"prettier": "^2.5.1",
"raw-loader": "^4.0.2",
"ts-node": "^10.4.0",
"tslint": "^6.1.3",
"typescript": "^4.5.2"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged && npm run check"
}
},
"lint-staged": {
"**/*.{js,ts,html,md,less,json}": "prettier --write",
"*.ts": "tslint --fix"
}
}