-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
54 lines (54 loc) · 1.82 KB
/
package.json
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
50
51
52
53
54
{
"name": "angular-tour-of-heroes",
"version": "1.0.0",
"scripts": {
"ng": "ng",
"start": "ng serve",
"build": "ng build",
"build-with-api-url": "envsub src/assets/env.template.js src/assets/env.js && ng build --configuration production",
"watch": "ng build --watch --configuration development",
"test": "ng test",
"prettier-check": "prettier --check \"./**/*.{md,jsx,json,html,css,js,yml,ts,tsx}\"",
"prettier-format": "prettier --write \"./**/*.{md,jsx,json,html,css,js,yml,ts,tsx}\"",
"lint": "ng lint"
},
"private": true,
"dependencies": {
"@typescript-eslint/parser": "^7.12.0",
"@angular/animations": "^15.2.10",
"@angular/common": "^15.2.10",
"@angular/compiler": "^15.2.10",
"@angular/core": "^15.2.10",
"@angular/forms": "^15.2.10",
"@angular/platform-browser": "^15.2.10",
"@angular/platform-browser-dynamic": "^15.2.10",
"@angular/router": "^15.2.10",
"@typescript-eslint/eslint-plugin": "^6.16.0",
"@typescript-eslint/parser": "^6.21.0",
"prettier": "^3.0.0",
"rxjs": "~6.6.0",
"tslib": "^2.6.2",
"zone.js": "^0.11.8"
},
"devDependencies": {
"@angular-devkit/build-angular": "^15.2.10",
"@angular-eslint/builder": "18.0.1",
"@angular-eslint/eslint-plugin": "14.4.0",
"@angular-eslint/eslint-plugin-template": "14.4.0",
"@angular-eslint/template-parser": "17.2.1",
"@angular/cli": "^15.2.11",
"@angular/compiler-cli": "^15.2.10",
"@types/jasmine": "~5.1.4",
"@types/node": "^20.11.17",
"eslint": "^8.56.0",
"jasmine-core": "~5.1.2",
"karma": "~6.4.2",
"karma-chrome-launcher": "~3.2.0",
"karma-coverage": "~2.2.1",
"karma-jasmine": "~5.1.0",
"karma-jasmine-html-reporter": "~2.1.0",
"prettier-check": "^2.0.0",
"typescript": "~4.8.4",
"envsub": "^4.1.0"
}
}