-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpackage.json
More file actions
93 lines (93 loc) · 3.59 KB
/
package.json
File metadata and controls
93 lines (93 loc) · 3.59 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
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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
{
"name": "angular-templates",
"version": "1.0.0",
"scripts": {
"ng": "ng",
"ecommerce": "ng serve ecommerce",
"ecommerce:build": "ng build ecommerce",
"ecommerce:watch": "ng build ecommerce --watch --configuration development",
"ecommerce:lint": "ng lint ecommerce",
"ecommerce:build-prod": "ng build ecommerce --configuration production",
"ecommerce:test": "ng test ecommerce",
"ecommerce:e2e": "ng e2e ecommerce",
"ecommerce:e2e-watch": "nodemon --ext ts --watch 'projects/ecommerce/e2e/tests/**/*.e2e.ts' --exec npm run e2e:ecommerce --signal SIGTERM",
"ecommerce:serve:ssr": "node dist/ecommerce/server/server.mjs",
"dashboard": "ng serve dashboard",
"dashboard:build": "ng build dashboard",
"dashboard:test": "ng test dashboard",
"dashboard:serve:ssr": "node dist/dashboard/server/server.mjs",
"image-gallery": "ng serve image-gallery",
"image-gallery:build": "ng build image-gallery",
"image-gallery:test": "ng test image-gallery",
"image-gallery:serve:ssr": "node dist/image-gallery/server/server.mjs",
"ai-text-editor": "ng serve ai-text-editor",
"ai-text-editor:build": "ng build ai-text-editor",
"ai-text-editor:test": "ng test ai-text-editor",
"ai-text-editor:serve:ssr": "node dist/ai-text-editor/server/server.mjs",
"kanban": "ng serve kanban",
"kanban:build": "ng build kanban",
"kanban:test": "ng test kanban",
"kanban:serve:ssr": "node dist/kanban/server/server.mjs",
"ai-chatbot": "ng serve ai-chatbot",
"ai-chatbot:build": "ng build ai-chatbot",
"ai-chatbot:test": "ng test ai-chatbot",
"ai-chatbot:serve:ssr": "node dist/ai-chatbot/server/server.mjs",
"shared:build": "ng build shared",
"shared:watch": "ng build shared --watch",
"shared:test": "ng test shared",
"shared:publish": "npm run shared:build && cd ./dist/shared && npm publish --access public",
"gemini:start-api": "node ./api/gemini.js",
"build": "./scripts/build-all.sh",
"test": "./scripts/test-all.sh"
},
"private": true,
"dependencies": {
"@angular/animations": "^21.0.0",
"@angular/common": "^21.0.0",
"@angular/compiler": "^21.0.0",
"@angular/core": "^21.0.0",
"@angular/forms": "^21.0.0",
"@angular/platform-browser": "^21.0.0",
"@angular/platform-browser-dynamic": "^21.0.0",
"@angular/platform-server": "^21.0.0",
"@angular/router": "^21.0.0",
"@angular/ssr": "^21.0.0",
"@google/generative-ai": "^0.17.2",
"cors": "^2.8.5",
"express": "^4.21.2",
"immutable": "^5.1.4",
"rxjs": "~7.8.0",
"showdown": "^2.1.0",
"tslib": "^2.8.1",
"zone.js": "^0.15.1"
},
"devDependencies": {
"@angular-eslint/builder": "^20.6.0",
"@angular-eslint/eslint-plugin": "^20.6.0",
"@angular-eslint/eslint-plugin-template": "^20.6.0",
"@angular-eslint/schematics": "^20.6.0",
"@angular-eslint/template-parser": "^20.6.0",
"@angular/build": "^21.0.0",
"@angular/cli": "^21.0.0",
"@angular/compiler-cli": "^21.0.0",
"@puppeteer/ng-schematics": "^0.7.0",
"@types/express": "^4.17.25",
"@types/jasmine": "~5.1.0",
"@types/node": "^18.19.130",
"@typescript-eslint/eslint-plugin": "^8.47.0",
"@typescript-eslint/parser": "^8.47.0",
"eslint": "^9.39.1",
"jasmine": "^5.12.0",
"jasmine-core": "~5.1.0",
"karma": "~6.4.0",
"karma-chrome-launcher": "~3.2.0",
"karma-coverage": "~2.2.0",
"karma-jasmine": "~5.1.0",
"karma-jasmine-html-reporter": "~2.1.0",
"ng-packagr": "^21.0.0",
"nodemon": "^3.1.11",
"prettier": "^3.6.2",
"puppeteer": "^24.31.0",
"typescript": "~5.9.3"
}
}