diff options
| author | Armand Philippot <git@armandphilippot.com> | 2022-02-20 16:11:50 +0100 |
|---|---|---|
| committer | Armand Philippot <git@armandphilippot.com> | 2022-02-20 16:15:08 +0100 |
| commit | 73a5c7fae9ffbe9ada721148c8c454a643aceebe (patch) | |
| tree | c8fad013ed9b5dd589add87f8d45cf02bbfc6e91 /public/projects/angular-small-apps/apps/recipes/package.json | |
| parent | b01239fbdcc5bbc5921f73ec0e8fee7bedd5c8e8 (diff) | |
chore!: restructure repo
I separated public files from the config/dev files. It improves repo
readability.
I also moved dotenv helper to public/inc directory and extract the
Matomo tracker in the same directory.
Diffstat (limited to 'public/projects/angular-small-apps/apps/recipes/package.json')
| -rw-r--r-- | public/projects/angular-small-apps/apps/recipes/package.json | 41 |
1 files changed, 41 insertions, 0 deletions
diff --git a/public/projects/angular-small-apps/apps/recipes/package.json b/public/projects/angular-small-apps/apps/recipes/package.json new file mode 100644 index 0000000..091ef3f --- /dev/null +++ b/public/projects/angular-small-apps/apps/recipes/package.json @@ -0,0 +1,41 @@ +{ + "name": "recipes", + "description": "A recipes app implemented with Angular.", + "version": "0.0.1", + "scripts": { + "ng": "ng", + "start": "ng serve --open", + "build": "ng build", + "watch": "ng build --watch --configuration development", + "test": "ng test" + }, + "private": true, + "dependencies": { + "@angular/animations": "~13.2.2", + "@angular/common": "~13.2.2", + "@angular/compiler": "~13.2.2", + "@angular/core": "~13.2.2", + "@angular/forms": "~13.2.2", + "@angular/platform-browser": "~13.2.2", + "@angular/platform-browser-dynamic": "~13.2.2", + "@angular/router": "~13.2.2", + "modern-normalize": "^1.1.0", + "rxjs": "~7.5.4", + "tslib": "^2.3.0", + "zone.js": "~0.11.4" + }, + "devDependencies": { + "@angular-devkit/build-angular": "~13.2.3", + "@angular/cli": "~13.2.3", + "@angular/compiler-cli": "~13.2.2", + "@types/jasmine": "~3.10.0", + "@types/node": "^17.0.18", + "jasmine-core": "~4.0.0", + "karma": "~6.3.14", + "karma-coverage": "~2.2.0", + "karma-firefox-launcher": "^2.1.2", + "karma-jasmine": "~4.0.0", + "karma-jasmine-html-reporter": "~1.7.0", + "typescript": "~4.5.5" + } +} |
