-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
109 lines (109 loc) · 4.43 KB
/
package.json
File metadata and controls
109 lines (109 loc) · 4.43 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
108
109
{
"name": "tools-angular",
"version": "0.0.0",
"scripts": {
"ng": "ng",
"start": "ng build --configuration production && node server.js",
"build": "ng build",
"dev": "NODE_OPTIONS=--openssl-legacy-provider && ng serve",
"test": "jest",
"lint": "ng lint",
"e2e": "ng e2e",
"build:qa": "ng build --configuration qa",
"build:prod": "ng build --configuration production",
"ghpages-old-production": "ng build --configuration production --configuration=\"old-production\" --base-href=\"/\" && angular-cli-ghpages --dir dist/tools-angular --cname old.noplaceleft.tools --repo=https://GH_TOKEN@github.com/NoPlaceLeft/tools-client-production.git --name=\"GH_USERNAME\" --email=\"GH_EMAIL\"",
"ghpages-production": "ng build --configuration production --configuration=\"old-production\" --base-href=\"/\" && angular-cli-ghpages --dir dist/tools-angular --cname noplaceleft.tools --repo=https://GH_TOKEN@github.com/taethni/npl-tools-client-production.git --name=\"GH_USERNAME\" --email=\"GH_EMAIL\"",
"ghpages": "ng build --configuration production --base-href=\"/\" && angular-cli-ghpages --dir dist/tools-angular --cname dev.noplaceleft.tools --no-silent"
},
"private": true,
"jest": {
"preset": "jest-preset-angular",
"setupFilesAfterEnv": [
"<rootDir>/src/setupJest.ts"
],
"setupFiles": [
"jest-localstorage-mock"
],
"moduleNameMapper": {
"@npl-shared/(.*)": "<rootDir>/src/app/shared/$1",
"@npl-core/(.*)": "<rootDir>/src/app/core/$1",
"@npl-models/(.*)": "<rootDir>/src/app/models/$1",
"@npl-admin/(.*)": "<rootDir>/src/app/admin/$1",
"@npl-template": "<rootDir>/src/templates/index",
"@agm/core": "<rootDir>/src/app/core/testing/agmcore.mock.ts"
}
},
"dependencies": {
"@angular/animations": "^12.1.5",
"@angular/cdk": "^12.2.2",
"@angular/common": "^12.1.5",
"@angular/compiler": "^12.1.5",
"@angular/core": "^12.1.5",
"@angular/flex-layout": "^11.0.0-beta.33",
"@angular/forms": "^12.1.5",
"@angular/material": "^12.2.2",
"@angular/material-moment-adapter": "^12.2.2",
"@angular/platform-browser": "^12.1.5",
"@angular/platform-browser-dynamic": "^12.1.5",
"@angular/platform-server": "^12.1.5",
"@angular/router": "^12.1.5",
"@arcgis/core": "4.24",
"@asymmetrik/ngx-leaflet": "^6.0.1",
"@ngrx/effects": "^12.4.0",
"@ngrx/router-store": "^12.4.0",
"@ngrx/store": "^12.4.0",
"@ngrx/store-devtools": "^12.4.0",
"@ngx-translate/core": "^13.0.0",
"@ngx-translate/http-loader": "^6.0.0",
"@swimlane/ngx-charts": "^18.0.1",
"@techiediaries/ngx-qrcode": "^9.1.0",
"angular-oauth2-oidc": "^12.1.0",
"core-js": "^3.8.3",
"d3": "^5.7.0",
"file-saver": "^2.0.5",
"jasmine-core": "~3.6.0",
"koa": "^2.13.1",
"koa-compress": "^3.0.0",
"koa-conditional-get": "^2.0.0",
"koa-etag": "^3.0.0",
"koa-send": "^5.0.0",
"koa-static": "^5.0.0",
"leaflet": "^1.7.1",
"lodash-es": "^4.17.20",
"material-design-icons-iconfont": "^6.1.0",
"moment": "^2.29.1",
"moment-timezone": "^0.5.33",
"ng-bullet": "^1.0.3",
"ngx-cookie-service": "^11.0.2",
"roboto-fontface": "^0.10.0",
"rxjs": "^6.6.3",
"rxjs-compat": "^6.6.3",
"tslib": "^2.0.0",
"uuid": "^3.3.2",
"xlsx": "^0.17.0",
"zone.js": "~0.11.4"
},
"devDependencies": {
"@angular-builders/jest": "^9.0.1",
"@angular-devkit/build-angular": "~12.1.4",
"@angular/cli": "^12.1.4",
"@angular/compiler-cli": "^12.1.5",
"@angular/language-service": "^12.1.5",
"@types/d3": "^5.16.4",
"@types/file-saver": "^2.0.0",
"@types/jest": "^24.0.19",
"@types/lodash": "^4.14.168",
"@types/node": "^12.20.1",
"@types/uuid": "^3.4.4",
"codelyzer": "^6.0.0",
"jest": "^24.9.0",
"jest-localstorage-mock": "^2.4.6",
"jest-preset-angular": "^9.0.7",
"ng-packagr": "^12.2.0",
"rxjs-tslint": "^0.1.6",
"ts-node": "~8.4.1",
"tslint": "~6.1.0",
"typescript": "~4.3.5",
"webpack": "^4.46.0"
}
}