-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
100 lines (100 loc) · 2.95 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
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
{
"name": "population",
"version": "0.0.0",
"scripts": {
"ng": "ng",
"prestart": "ng build --prod --build-optimizer",
"start": "nodemon babel-node index.js",
"serve": "ng serve",
"build": "ng build --prod --build-optimizer",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"lint": "ng lint",
"e2e": "ng e2e"
},
"private": true,
"dependencies": {
"@angular-devkit/build-angular": "~0.1100.3",
"@angular/animations": "~11.2.8",
"@angular/cdk": "^11.2.8",
"@angular/cli": "^11.2.8",
"@angular/common": "^11.2.8",
"@angular/compiler": "~11.2.8",
"@angular/compiler-cli": "~11.2.8",
"@angular/core": "~11.2.8",
"@angular/forms": "~11.2.8",
"@angular/material": "^11.2.8",
"@angular/platform-browser": "~11.2.8",
"@angular/platform-browser-dynamic": "~11.2.8",
"@angular/router": "~11.2.8",
"@asymmetrik/ngx-leaflet": "^8.1.0",
"@babel/core": "^7.12.10",
"@babel/node": "^7.12.10",
"@babel/preset-env": "^7.12.10",
"@types/leaflet.markercluster": "^1.4.2",
"@zeit/ng-deploy": "^0.3.0",
"cors": "^2.8.5",
"json-server": "^0.16.3",
"leaflet": "^1.6.0",
"leaflet.heat": "^0.2.0",
"leaflet.markercluster": "^1.4.1",
"nodemon": "^2.0.6",
"now-client": "^5.2.1",
"rxjs": "~6.6.3",
"tslib": "^2.0.0",
"zone.js": "~0.10.3"
},
"devDependencies": {
"@angular-eslint/builder": "0.8.0-beta.5",
"@angular-eslint/eslint-plugin": "0.8.0-beta.5",
"@angular-eslint/eslint-plugin-template": "0.8.0-beta.5",
"@angular-eslint/schematics": "^0.8.0-beta.5",
"@angular-eslint/template-parser": "0.8.0-beta.5",
"@types/jasmine": "~3.6.0",
"@types/jasminewd2": "~2.0.3",
"@types/jest": "^26.0.19",
"@types/node": "^12.11.1",
"@typescript-eslint/eslint-plugin": "4.3.0",
"@typescript-eslint/parser": "4.3.0",
"codelyzer": "^6.0.0",
"eslint": "^7.6.0",
"eslint-plugin-import": "2.22.1",
"eslint-plugin-jsdoc": "30.7.6",
"eslint-plugin-prefer-arrow": "1.2.2",
"jasmine-core": "~3.6.0",
"jasmine-spec-reporter": "~5.0.0",
"jest": "^26.6.3",
"jest-preset-angular": "^8.3.2",
"protractor": "~7.0.0",
"ts-node": "~8.3.0",
"tslint": "~6.1.0",
"typescript": "~4.0.5"
},
"jest": {
"preset": "jest-preset-angular",
"setupFilesAfterEnv": [
"<rootDir>/setup-jest.ts"
],
"moduleNameMapper": {
"@app/(.*)": "<rootDir>/src/app/$1",
"@components/(.*)": "<rootDir>/src/app/components/$1",
"@models/(.*)": "<rootDir>/src/app/models/$1",
"@services/(.*)": "<rootDir>/src/app/services/$1"
},
"moduleDirectories": [
"node_modules",
"src"
],
"testPathIgnorePatterns": [
"<rootDir>/node_modules/",
"<rootDir>/dist/"
],
"globals": {
"ts-jest": {
"tsconfig": "<rootDir>/tsconfig.spec.json",
"stringifyContentPathRegex": "\\.html$"
}
}
}
}