-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.73 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.73 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
{
"name": "starwars-app",
"version": "1.8.0",
"scripts": {
"ng": "ng",
"env": "ts-node set-env.ts",
"env:prod": "cross-env NODE_ENV=production ts-node set-env.ts",
"start": "npm run env && ng serve -o",
"build": "npm run env:prod && ng build",
"watch": "ng build --watch --configuration development",
"api": "json-server --host localhost --port 6060 --watch json-server/db.json --routes json-server/routes.json",
"deploy": "npm run build && powershell Compress-Archive -Path dist/starwars-app/* -DestinationPath dist/starwars-app.zip -Force && az webapp deploy --resource-group starwarsAppResourceGroup --name Starwars-App --src-path dist/starwars-app.zip --type zip"
},
"private": true,
"dependencies": {
"@angular/animations": "^18.0.0",
"@angular/cdk": "^18.2.14",
"@angular/common": "^18.0.0",
"@angular/compiler": "^18.0.0",
"@angular/core": "^18.0.0",
"@angular/forms": "^18.0.0",
"@angular/material": "^18.2.14",
"@angular/platform-browser": "^18.0.0",
"@angular/platform-browser-dynamic": "^18.0.0",
"@angular/router": "^18.0.0",
"@auth0/auth0-angular": "^2.2.3",
"rxjs": "~7.5.0",
"tslib": "^2.3.0",
"zone.js": "~0.14.4"
},
"devDependencies": {
"@angular-devkit/build-angular": "^18.0.1",
"@angular/cli": "~18.0.1",
"@angular/compiler-cli": "^18.0.0",
"@types/jasmine": "~4.0.0",
"cross-env": "^7.0.3",
"dotenv": "^16.0.1",
"jasmine-core": "~4.1.0",
"json-server": "^0.17.0",
"karma": "~6.3.0",
"karma-chrome-launcher": "~3.1.0",
"karma-coverage": "~2.2.0",
"karma-jasmine": "~5.0.0",
"karma-jasmine-html-reporter": "~1.7.0",
"prettier": "^2.7.1",
"ts-node": "^10.9.1",
"typescript": "~5.4.2"
}
}