mirror of
https://github.com/LukeHagar/vercel.git
synced 2025-12-09 12:57:46 +00:00
`pnpm` is our package manager of choice. This repository contains framework starter templates, which check-in lockfiles to speed up clone & deploy time. This PR updates a few frameworks to use `pnpm` instead of `yarn` or `npm`. - Updates Gatsby to Gatsby 5 given Node.js 18 support - Updates to latest Nuxt 3 template for stable version - Updates Astro to latest stable version, previously on RC - Updates Angular to v15, previously on v13
37 lines
995 B
JSON
37 lines
995 B
JSON
{
|
|
"private": true,
|
|
"scripts": {
|
|
"ng": "ng",
|
|
"start": "ng serve",
|
|
"build": "ng build",
|
|
"watch": "ng build --watch --configuration development",
|
|
"test": "ng test"
|
|
},
|
|
"dependencies": {
|
|
"@angular/animations": "^15.0.0",
|
|
"@angular/common": "^15.0.0",
|
|
"@angular/compiler": "^15.0.0",
|
|
"@angular/core": "^15.0.0",
|
|
"@angular/forms": "^15.0.0",
|
|
"@angular/platform-browser": "^15.0.0",
|
|
"@angular/platform-browser-dynamic": "^15.0.0",
|
|
"@angular/router": "^15.0.0",
|
|
"rxjs": "~7.5.0",
|
|
"tslib": "^2.3.0",
|
|
"zone.js": "~0.12.0"
|
|
},
|
|
"devDependencies": {
|
|
"@angular-devkit/build-angular": "^15.0.0",
|
|
"@angular/cli": "~15.0.0",
|
|
"@angular/compiler-cli": "^15.0.0",
|
|
"@types/jasmine": "~4.3.0",
|
|
"jasmine-core": "~4.5.0",
|
|
"karma": "~6.4.0",
|
|
"karma-chrome-launcher": "~3.1.0",
|
|
"karma-coverage": "~2.2.0",
|
|
"karma-jasmine": "~5.1.0",
|
|
"karma-jasmine-html-reporter": "~2.0.0",
|
|
"typescript": "~4.8.2"
|
|
}
|
|
}
|