-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
75 lines (75 loc) · 2.45 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
{
"name": "svc-ng",
"version": "1.18.0",
"license": "MIT AND GPL-3.0-or-later",
"author": "Kerry Shetline <[email protected]>",
"scripts": {
"ng": "ng",
"start": "ng serve --proxy-config proxy.conf.json",
"build": "rimraf dist && ng build --configuration production --source-map=true && cd server && npm run build && cd .. && copyfiles -u 2 \"server/dist/**/*\" \"dist\"",
"build-debug": "ng build --source-map=true",
"test": "ng test",
"lint": "eslint \"src/**/*.ts\"",
"e2e": "ng e2e"
},
"private": true,
"dependencies": {
"@angular/animations": "^15.1.0",
"@angular/cdk": "^15.1.0",
"@angular/common": "^15.1.0",
"@angular/compiler": "^15.1.0",
"@angular/core": "^15.1.0",
"@angular/forms": "^15.1.0",
"@angular/platform-browser": "^15.1.0",
"@angular/platform-browser-dynamic": "^15.1.0",
"@angular/router": "^15.1.0",
"@fortawesome/fontawesome-free": "^6.2.1",
"@tubular/array-buffer-reader": "^3.0.2",
"@tubular/astronomy": "^3.5.0",
"@tubular/math": "^3.3.1",
"@tubular/ng-widgets": "^2.2.2",
"@tubular/time": "^3.8.11",
"@tubular/util": "^4.13.1",
"core-js": "^2.6.12",
"detect-resize": "^0.1.5",
"lodash-es": "^4.17.21",
"primeicons": "^6.0.1",
"primeng": "^15.0.1",
"rxjs": "^6.6.7",
"three": "^0.142.0",
"zone.js": "~0.11.6"
},
"devDependencies": {
"@angular-devkit/build-angular": "^15.1.1",
"@angular/cli": "^15.1.1",
"@angular/compiler-cli": "^15.1.0",
"@angular/language-service": "^15.1.0",
"@tubular/browser-check": "^2.1.0",
"@types/googlemaps": "^3.43.3",
"@types/jasmine": "^4.3.1",
"@types/jasminewd2": "^2.0.10",
"@types/lodash-es": "^4.17.6",
"@types/three": "^0.148.0",
"@typescript-eslint/eslint-plugin": "^5.48.1",
"@typescript-eslint/parser": "^5.48.1",
"codelyzer": "^6.0.2",
"copyfiles": "^2.4.1",
"eslint": "^8.31.0",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-import": "^2.27.4",
"eslint-plugin-n": "^15.6.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.1.1",
"jasmine-core": "~4.5.0",
"jasmine-spec-reporter": "~7.0.0",
"karma": "^6.4.1",
"karma-chrome-launcher": "~3.1.1",
"karma-coverage-istanbul-reporter": "~3.0.3",
"karma-jasmine": "~5.1.0",
"karma-jasmine-html-reporter": "^1.7.0",
"protractor": "~7.0.0",
"rimraf": "^4.0.4",
"ts-node": "^10.9.1",
"typescript": "^4.9.4"
}
}