-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
61 lines (61 loc) · 2.01 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
{
"name": "presence",
"version": "0.0.0",
"packageManager": "pnpm@8.10.2",
"scripts": {
"ng": "ng",
"start": "ng serve",
"build": "ng build --output-path ./dist",
"build:ci": "ng build --output-path ./dist --localize && rollup -c rollup.config.mjs",
"build:static": "ng build --output-path ./dist --localize --ssr=false",
"watch": "ng build --watch --configuration development",
"test": "ng test",
"test:ci": "ng test --no-watch --no-progress --browsers=ChromeHeadless",
"extract-i18n": "ng extract-i18n --out-file src/locales/en_devel.xlf --format xlif"
},
"private": true,
"dependencies": {
"@angular/animations": "^19.1.1",
"@angular/common": "^19.1.1",
"@angular/compiler": "^19.1.1",
"@angular/core": "^19.1.1",
"@angular/forms": "^19.1.1",
"@angular/platform-browser": "^19.1.1",
"@angular/platform-browser-dynamic": "^19.1.1",
"@angular/platform-server": "^19.1.1",
"@angular/router": "^19.1.1",
"@angular/ssr": "^19.1.1",
"@feel/form": "^0.0.30",
"@feel/notification": "^0.0.30",
"@feel/style": "^0.0.30",
"@fontsource/dm-sans": "^5.1.1",
"express": "^4.21.2",
"ngx-progressbar": "^14.0.0",
"rxjs": "~7.8.1",
"tslib": "^2.8.1",
"zone.js": "~0.15.0"
},
"devDependencies": {
"@angular-devkit/build-angular": "^19.1.1",
"@angular/cli": "^19.1.1",
"@angular/compiler-cli": "^19.1.1",
"@angular/language-service": "^19.1.1",
"@angular/localize": "19.1.1",
"@rollup/plugin-commonjs": "^28.0.2",
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-node-resolve": "^15.3.1",
"@rollup/plugin-typescript": "^11.1.6",
"@types/express": "^5.0.0",
"@types/jasmine": "~5.1.5",
"@types/node": "^20.17.14",
"apexcharts": "^4.3.0",
"jasmine-core": "~5.5.0",
"karma": "~6.4.4",
"karma-chrome-launcher": "~3.2.0",
"karma-coverage": "~2.2.1",
"karma-jasmine": "~5.1.0",
"karma-jasmine-html-reporter": "~2.1.0",
"rollup": "^4.30.1",
"typescript": "~5.7.3"
}
}