-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 2.55 KB
/
package.json
File metadata and controls
76 lines (76 loc) · 2.55 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
{
"name": "designsystem",
"version": "20.0.0-next.0",
"scripts": {
"ng": "ng",
"start": "concurrently -k \"ng build components --watch\" \"wait-on ./dist/components/index.d.ts && ng serve --open\"",
"build": "ng build design && ng build components && ng build",
"watch": "ng build --watch --configuration development",
"watch:libs": "ng build components --watch",
"test": "ng test components --watch",
"test:ci": "ng test components --watch false",
"mock-server": "node ./mock-server/server.js",
"icons": "npm run icons:optimize && npm run icons:sprite",
"icons:optimize": "svgo --config .svgo.js projects/components/src/assets/icons",
"icons:sprite": "svg-sprite --config ./.svg-sprite.json projects/components/src/assets/icons/*.svg"
},
"private": false,
"dependencies": {
"@angular/animations": "^20.3.4",
"@angular/cdk": "^20.2.8",
"@angular/common": "^20.3.4",
"@angular/compiler": "^20.3.4",
"@angular/core": "^20.3.4",
"@angular/forms": "^20.3.4",
"@angular/localize": "^20.3.4",
"@angular/platform-browser": "^20.3.4",
"@angular/platform-browser-dynamic": "^20.3.4",
"@angular/router": "^20.3.4",
"@muziehdesign/forms": "^19.2.8-beta.991",
"@ng-bootstrap/ng-bootstrap": "^19.0.1",
"@stackblitz/sdk": "^1.8.0",
"@tailwindcss/typography": "^0.5.0",
"@types/google.maps": "^3.49.2",
"bootstrap": "^5.3.3",
"reflect-metadata": "^0.1.13",
"rxjs": "~7.8.0",
"subsink": "^1.0.2",
"tslib": "^2.6.2",
"zone.js": "^0.15.0"
},
"devDependencies": {
"@angular/build": "^20.3.5",
"@angular/cli": "^20.3.5",
"@angular/compiler-cli": "^20.3.4",
"@ng-apimock/core": "^1.0.8",
"@ng-apimock/dev-interface": "^3.1.0",
"@ngneat/spectator": "^10.0.0",
"@popperjs/core": "^2.11.6",
"@tailwindcss/forms": "^0.5.10",
"@types/jasmine": "~3.8.0",
"@types/node": "^12.20.55",
"concurrently": "^9.1.2",
"cors": "^2.8.5",
"daisyui": "^4.12.24",
"express": "^4.17.2",
"fs": "^0.0.1-security",
"glob": "^8.0.3",
"http": "0.0.1-security",
"jasmine-core": "~3.8.0",
"jsrsasign": "^11.1.0",
"karma": "^6.4.2",
"karma-chrome-launcher": "^3.2.0",
"karma-coverage": "~2.0.3",
"karma-jasmine": "~4.0.0",
"karma-jasmine-html-reporter": "~1.7.0",
"morgan": "^1.10.0",
"ng-packagr": "^20.3.0",
"replace-in-file": "^6.3.5",
"serve-static": "^1.14.2",
"svg-sprite": "^2.0.4",
"svgo": "^3.3.2",
"tailwindcss": "^3.4.17",
"typescript": "^5.9.3",
"wait-on": "^8.0.3"
}
}