-
Notifications
You must be signed in to change notification settings - Fork 42
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
Β·107 lines (107 loc) Β· 3.67 KB
/
package.json
File metadata and controls
executable file
Β·107 lines (107 loc) Β· 3.67 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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
{
"name": "planet",
"license": "AGPL-3.0",
"version": "0.22.90",
"myplanet": {
"latest": "v0.55.91",
"min": "v0.53.91"
},
"scripts": {
"ng": "ng",
"ng-high-memory": "node --max_old_space_size=4096 ./node_modules/@angular/cli/bin/ng",
"start": "ng serve",
"dev": "bash dev-env.sh && ng serve --configuration dev",
"build": "npm run ng-high-memory -- build --configuration production",
"test": "ng test",
"htmlhint": "./node_modules/htmlhint-ng2/bin/htmlhint --config .htmlhintrc",
"sass-lint": "./node_modules/sass-lint/bin/sass-lint.js -c ./sass-lint.yml -v -q",
"lint": "ng lint planet-app",
"lint-all": "npm run sass-lint && ng lint planet-app --type-check && npm run htmlhint",
"install-hooks": "cp -a git-hooks/. .git/hooks/",
"webdriver-set-version": "webdriver-manager update --standalone false --gecko false --versions.chrome 2.37",
"starthub-true": "echo \"true\" > /srv/starthub",
"starthub-false": "echo \"false\" > /srv/starthub"
},
"private": true,
"dependencies": {
"@angular/animations": "19.2.20",
"@angular/cdk": "19.2.19",
"@angular/common": "19.2.20",
"@angular/compiler": "19.2.20",
"@angular/core": "19.2.20",
"@angular/forms": "19.2.20",
"@angular/localize": "19.2.20",
"@angular/material": "19.2.19",
"@angular/platform-browser": "19.2.20",
"@angular/platform-browser-dynamic": "19.2.20",
"@angular/platform-server": "19.2.20",
"@angular/router": "19.2.20",
"@angular/service-worker": "19.2.20",
"@covalent/markdown": "^10.5.3",
"@covalent/text-editor": "^10.5.3",
"@fullcalendar/angular": "^6.1.10",
"@fullcalendar/core": "^6.1.10",
"@fullcalendar/daygrid": "^6.1.10",
"@fullcalendar/interaction": "^6.1.10",
"chart.js": "^3.9.1",
"export-to-csv": "^0.2.1",
"html-to-pdfmake": "^1.2.0",
"jszip": "^3.2.2",
"marked": "4.2.5",
"material-design-icons": "^3.0.1",
"material-icons": "^0.3.1",
"mime": "4.0.0",
"ngx-image-cropper": "^8.1.1",
"pdfmake": "^0.3.6",
"pouchdb": "^7.1.1",
"pouchdb-authentication": "^1.1.3",
"pouchdb-find": "^7.1.1",
"rxjs": "6.5.4",
"showdown": "2.1.0",
"tslib": "^2.0.0",
"zone.js": "~0.15.1"
},
"devDependencies": {
"@angular-devkit/build-angular": "19.2.22",
"@angular-eslint/builder": "19.8.1",
"@angular-eslint/eslint-plugin": "19.8.1",
"@angular-eslint/eslint-plugin-template": "19.8.1",
"@angular-eslint/schematics": "19.8.1",
"@angular-eslint/template-parser": "19.8.1",
"@angular/cli": "19.2.22",
"@angular/compiler-cli": "19.2.20",
"@angular/language-service": "19.2.20",
"@eslint/compat": "^1.4.1",
"@eslint/eslintrc": "^3.3.5",
"@eslint/js": "^9.39.4",
"@fortawesome/fontawesome-free": "^5.13.0",
"@stylistic/eslint-plugin": "^5.10.0",
"@types/jasmine": "~3.6.0",
"@types/node": "^18.19.130",
"@types/pouchdb": "^6.4.0",
"@types/pouchdb-find": "^6.3.4",
"@typescript-eslint/eslint-plugin": "^8.57.1",
"@typescript-eslint/parser": "^8.57.1",
"eslint": "^9.39.4",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jsdoc": "^46.10.1",
"eslint-plugin-prefer-arrow": "^1.2.3",
"htmlhint-ng2": "0.0.13",
"jasmine-core": "~3.6.0",
"jasmine-spec-reporter": "~5.0.0",
"karma": "~6.4.4",
"karma-chrome-launcher": "~3.1.0",
"karma-cli": "~2.0.0",
"karma-coverage-istanbul-reporter": "^2.1.1",
"karma-jasmine": "~4.0.0",
"karma-jasmine-html-reporter": "1.5.0",
"sass-lint": "^1.13.1",
"ts-node": "~8.5.4",
"typescript": "~5.8.3"
},
"overrides": {
"@typescript-eslint/visitor-keys": {
"eslint-visitor-keys": "4.2.1"
}
}
}