-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
77 lines (77 loc) · 2.5 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
{
"name": "cookingdom",
"version": "1.0.0",
"scripts": {
"ng": "ng",
"config": "ts-node ./src/assets/scripts/setEnv.ts",
"start": "npm run config -- --environment=dev && ng serve",
"build": "npm run config -- --environment=prod && ng build --configuration production",
"build:stats": "ng build --stats-json",
"test": "ng test",
"lint": "ng lint",
"e2e": "ng e2e",
"analyze": "webpack-bundle-analyzer dist/cookingdom/stats.json",
"vercel-build": "npm run config -- --environment=prod && ng build --configuration production --aot --build-optimizer"
},
"engines": {
"node": ">=18",
"npm": "~9.8.0"
},
"private": true,
"dependencies": {
"@angular/animations": "^16.2.11",
"@angular/common": "^16.2.11",
"@angular/core": "^16.2.11",
"@angular/fire": "^16.0.0",
"@angular/forms": "^16.2.11",
"@angular/localize": "^16.2.11",
"@angular/platform-browser": "^16.2.11",
"@angular/platform-browser-dynamic": "^16.2.11",
"@angular/router": "^16.2.11",
"@fortawesome/angular-fontawesome": "^0.13.0",
"@fortawesome/fontawesome-svg-core": "^6.4.2",
"@fortawesome/free-brands-svg-icons": "^6.4.2",
"@fortawesome/free-solid-svg-icons": "^6.4.2",
"@ng-bootstrap/ng-bootstrap": "^15.1.2",
"@popperjs/core": "^2.11.8",
"ajv": "^8.12.0",
"bootstrap": "^5.2.3",
"cookieconsent": "^3.1.1",
"ng-recaptcha": "^12.0.2",
"ngx-cookieconsent": "^4.0.2",
"rxjs": "~7.8.1",
"tslib": "^2.6.2",
"zone.js": "~0.13.0"
},
"devDependencies": {
"@angular-devkit/build-angular": "^16.2.8",
"@angular-eslint/builder": "^16.2.0",
"@angular-eslint/eslint-plugin": "^16.2.0",
"@angular-eslint/eslint-plugin-template": "^16.2.0",
"@angular-eslint/schematics": "^16.2.0",
"@angular-eslint/template-parser": "^16.2.0",
"@angular/cli": "^16.2.8",
"@angular/compiler": "^16.2.11",
"@angular/compiler-cli": "^16.2.11",
"@angular/language-service": "^16.2.11",
"@types/jasmine": "~5.1.1",
"@typescript-eslint/eslint-plugin": "^6.9.0",
"@typescript-eslint/parser": "^6.9.0",
"dotenv": "~16.3.1",
"eslint": "^8.52.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-jasmine": "^4.1.3",
"eslint-plugin-prettier": "^5.0.1",
"jasmine-core": "~5.1.1",
"karma": "~6.4.2",
"karma-chrome-launcher": "~3.2.0",
"karma-coverage-istanbul-reporter": "^3.0.3",
"karma-firefox-launcher": "^2.1.2",
"karma-jasmine": "~5.1.0",
"karma-jasmine-html-reporter": "~2.1.0",
"prettier-eslint": "^16.1.1",
"ts-node": "^10.9.1",
"typescript": "^4.9.5",
"webpack-bundle-analyzer": "^4.9.1"
}
}