use strict dependencies versions to reduce unpredictable behavior as package-lock.json is gitignored
34 lines
885 B
JSON
34 lines
885 B
JSON
{
|
|
"name": "ct-angular",
|
|
"version": "0.0.0",
|
|
"private": true,
|
|
"scripts": {
|
|
"ng": "ng",
|
|
"start": "ng serve",
|
|
"build": "ng build",
|
|
"watch": "ng build --watch --configuration development",
|
|
"test": "npx playwright test",
|
|
"typecheck": "tsc --noEmit"
|
|
},
|
|
"dependencies": {
|
|
"@analogjs/vite-plugin-angular": "1.0.2",
|
|
"@angular/animations": "17.3.1",
|
|
"@angular/common": "17.3.1",
|
|
"@angular/compiler": "17.3.1",
|
|
"@angular/core": "17.3.1",
|
|
"@angular/forms": "17.3.1",
|
|
"@angular/platform-browser": "17.3.1",
|
|
"@angular/platform-browser-dynamic": "17.3.1",
|
|
"@angular/router": "17.3.1",
|
|
"rxjs": "7.8.1",
|
|
"tslib": "2.6.2",
|
|
"zone.js": "0.14.4"
|
|
},
|
|
"devDependencies": {
|
|
"@angular-devkit/build-angular": "17.3.2",
|
|
"@angular/cli": "17.3.2",
|
|
"@angular/compiler-cli": "17.3.1",
|
|
"typescript": "5.4.3"
|
|
}
|
|
}
|