-
Notifications
You must be signed in to change notification settings - Fork 47
/
Copy pathpackage.json
103 lines (103 loc) · 3.39 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
101
102
103
{
"name": "mangol-app",
"version": "12.2.1",
"scripts": {
"ng": "ng",
"start": "ng serve --port 4200 --host 0.0.0.0 --disable-host-check",
"build": "ng build",
"test": "ng test",
"e2e": "ng e2e",
"lint": "ng lint",
"stylelint": "stylelint",
"compodoc": "./node_modules/.bin/compodoc projects/mangol -p projects/mangol/tsconfig.lib.json -d ./doc --theme material",
"copy-readme": "cp README.md projects/mangol",
"build-lib": "ng build mangol --configuration production && cp -r projects/mangol/src/lib/assets/scss dist/mangol",
"build-mangol": "npm run copy-readme && npm run compodoc && npm run build-lib",
"prepare": "husky install",
"test-headless": "ng test --watch=false --browsers=ChromeHeadless"
},
"license": "MIT",
"private": false,
"dependencies": {
"@angular/animations": "^13.1.1",
"@angular/cdk": "^13.1.1",
"@angular/common": "^13.1.1",
"@angular/compiler": "^13.1.1",
"@angular/core": "^13.1.1",
"@angular/forms": "^13.1.1",
"@angular/material": "^13.1.1",
"@angular/platform-browser": "^13.1.1",
"@angular/platform-browser-dynamic": "^13.1.1",
"@angular/router": "^13.1.1",
"@ngrx/effects": "^13.0.2",
"@ngrx/store": "^13.0.2",
"@types/geojson": "^7946.0.8",
"@types/ol": "^6.5.3",
"core-js": "^3.16.1",
"file-saver": "^2.0.5",
"jspdf": "^2.5.0",
"ol": "^6.11.0",
"proj4": "^2.7.5",
"rxjs": "^7.3.0",
"zone.js": "^0.11.4"
},
"devDependencies": {
"@angular-devkit/build-angular": "~13.1.2",
"@angular-devkit/build-ng-packagr": "~0.1002.0",
"@angular-eslint/builder": "13.0.1",
"@angular-eslint/eslint-plugin": "13.0.1",
"@angular-eslint/eslint-plugin-template": "13.0.1",
"@angular-eslint/schematics": "13.0.1",
"@angular-eslint/template-parser": "13.0.1",
"@angular/cli": "~13.1.2",
"@angular/compiler-cli": "^13.1.1",
"@angular/language-service": "^13.1.1",
"@compodoc/compodoc": "^1.1.14",
"@ngrx/schematics": "^13.0.2",
"@types/file-saver": "^2.0.3",
"@types/jasmine": "~3.8.2",
"@types/jasminewd2": "~2.0.10",
"@types/jspdf": "^2.0.0",
"@types/node": "~16.6.1",
"@typescript-eslint/eslint-plugin": "5.3.0",
"@typescript-eslint/parser": "5.3.0",
"eslint": "^8.2.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-simple-import-sort": "^7.0.0",
"eslint-plugin-unused-imports": "^2.0.0",
"husky": "^7.0.4",
"jasmine-core": "~3.8.0",
"jasmine-spec-reporter": "~7.0.0",
"karma": "~6.3.4",
"karma-chrome-launcher": "~3.1.0",
"karma-coverage-istanbul-reporter": "~3.0.3",
"karma-jasmine": "~4.0.1",
"karma-jasmine-html-reporter": "^1.7.0",
"lint-staged": "^12.1.7",
"ng-packagr": "^13.1.2",
"postcss": "^8.4.5",
"postcss-scss": "^4.0.3",
"prettier": "^2.5.1",
"prettier-eslint": "^13.0.0",
"protractor": "~7.0.0",
"stylelint": "^14.2.0",
"stylelint-config-property-sort-order-smacss": "^8.0.0",
"stylelint-config-recommended-scss": "^5.0.2",
"stylelint-config-sass-guidelines": "^9.0.1",
"stylelint-order": "^5.0.0",
"stylelint-scss": "^4.1.0",
"ts-node": "~10.2.0",
"tsickle": ">=0.43.0",
"tslib": "^2.3.1",
"typescript": "~4.4.3"
},
"lint-staged": {
"src/**/*.ts": [
"eslint . --fix"
],
"src/**/*.scss": [
"stylelint --fix"
]
}
}