feat: base project
added bootstrap, json-server, axios, axios configuration and test data
Showing
This diff is collapsed.
... | ... | @@ -3,10 +3,11 @@ |
"version": "0.0.0", | ||
"scripts": { | ||
"ng": "ng", | ||
"start": "ng serve", | ||
"start": "ng serve -o", | ||
"build": "ng build", | ||
"watch": "ng build --watch --configuration development", | ||
"test": "ng test" | ||
"test": "ng test", | ||
"server": "json-server-auth --port 3000 --watch ./server/db.json" | ||
}, | ||
"private": true, | ||
"dependencies": { | ||
... | ... | @@ -18,6 +19,10 @@ |
"@angular/platform-browser": "^16.2.0", | ||
"@angular/platform-browser-dynamic": "^16.2.0", | ||
"@angular/router": "^16.2.0", | ||
"axios": "^1.5.1", | ||
"bootstrap": "^5.3.2", | ||
"json-server": "^0.17.4", | ||
"json-server-auth": "^2.1.0", | ||
"rxjs": "~7.8.0", | ||
"tslib": "^2.3.0", | ||
"zone.js": "~0.13.0" | ||
... | ... |
server/db.json
0 → 100644
This diff is collapsed.
Please register or sign in to comment