-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
81 lines (81 loc) · 3.21 KB
/
package.json
File metadata and controls
81 lines (81 loc) · 3.21 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
{
"name": "skill-hive",
"version": "19.0.0",
"scripts": {
"ng": "ng",
"start": "ng serve",
"build": "ng build",
"build:prod": "ng build --configuration production",
"build:test": "ng build --configuration testing",
"watch": "ng build --watch --configuration development",
"format": "prettier --write \"**/*.{js,mjs,ts,mts,d.ts,html}\" --cache",
"test": "ng test",
"doc": "compodoc -p tsconfig.json -d docs --language fr",
"gen-api": "npx openapi-typescript-codegen --client angular -i http://localhost:5113/swagger/v1/swagger.json -o src/app/api ",
"cap:copy": "npx cap copy",
"cap:sync": "npx cap sync",
"cap:build": "npm run build:prod && npx cap copy",
"cap:build:android": "npm run build:prod && npx cap copy && npx cap open android",
"cap:run:android": "npx cap run android",
"cap:add:android": "npx cap add android",
"cap:assets": "npx capacitor-assets generate --iconBackgroundColor '#ffffff' --iconBackgroundColorDark '#000000' --splashBackgroundColor '#ffffff' --splashBackgroundColorDark '#000000'"
},
"private": true,
"dependencies": {
"@angular/animations": "^19.0.0",
"@angular/common": "^19.0.0",
"@angular/compiler": "^19.0.0",
"@angular/core": "^19.0.0",
"@angular/forms": "^19.0.0",
"@angular/platform-browser": "^19.0.0",
"@angular/platform-browser-dynamic": "^19.0.0",
"@angular/router": "^19.0.0",
"@capacitor/android": "^7.4.2",
"@capacitor/app": "^7.0.2",
"@capacitor/core": "^7.4.2",
"@capacitor/local-notifications": "^7.0.2",
"@fullcalendar/angular": "^6.1.16",
"@fullcalendar/core": "^6.1.15",
"@fullcalendar/daygrid": "^6.1.15",
"@fullcalendar/interaction": "^6.1.15",
"@fullcalendar/list": "^6.1.15",
"@fullcalendar/timegrid": "^6.1.15",
"@microsoft/signalr": "^8.0.17",
"@primeng/themes": "^19.0.5",
"chart.js": "4.4.2",
"primeclt": "^0.1.5",
"primeicons": "^7.0.0",
"primeng": "^19.0.5",
"rxjs": "~7.8.0",
"tailwindcss-primeui": "^0.3.2",
"tslib": "^2.3.0",
"zone.js": "~0.15.0"
},
"devDependencies": {
"@angular-devkit/build-angular": "^19.0.6",
"@angular/cli": "^19.0.6",
"@angular/compiler-cli": "^19.0.0",
"@capacitor/assets": "^3.0.5",
"@capacitor/cli": "^7.4.3",
"@compodoc/compodoc": "^1.1.26",
"@types/jasmine": "~5.1.0",
"autoprefixer": "^10.4.20",
"cypress": "^15.2.0",
"eslint": "^9.14.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-prefer-arrow": "^1.2.3",
"eslint-plugin-prettier": "^4.2.1",
"jasmine-core": "~5.4.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",
"openapi-typescript-codegen": "^0.29.0",
"postcss": "^8.4.49",
"prettier": "^3.0.0",
"tailwindcss": "^3.4.17",
"typescript": "~5.6.2"
}
}