-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
105 lines (105 loc) · 3.37 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
104
105
{
"name": "sipecam",
"version": "1.0.0",
"private": true,
"scripts": {
"ng": "ng",
"build": "npm run env -s && ng build --configuration production",
"start": "npm run env -s && ng serve --proxy-config proxy.conf.js",
"lint": "ng lint && stylelint \"src/**/*.scss\" --syntax scss && htmlhint \"src\" --config .htmlhintrc",
"test": "npm run env -s && ng test",
"test:ci": "npm run env -s && npm run lint -s && ng test --configuration=ci",
"e2e": "npm run env -s && ng e2e",
"translations:extract": "ngx-translate-extract --input ./src --output ./src/translations/template.json --format=json --clean --sort --marker extract",
"env": "ngx-scripts env npm_package_version",
"prettier": "prettier --write \"./{src,e2e}/**/*.{ts,js,html,scss}\"",
"prettier:check": "prettier --list-different \"./{src,e2e}/**/*.{ts,js,html,scss}\"",
"postinstall": "npm run prettier -s",
"generate": "ng generate"
},
"dependencies": {
"@amcharts/amcharts4": "^4.10.23",
"@angular/animations": "^13.2.2",
"@angular/common": "^13.2.2",
"@angular/compiler": "^13.2.2",
"@angular/core": "^13.2.2",
"@angular/forms": "^13.2.2",
"@angular/platform-browser": "^13.2.2",
"@angular/platform-browser-dynamic": "^13.2.2",
"@angular/router": "^13.2.2",
"@apollo/client": "^3.4.8",
"@ionic/angular": "^6.0.8",
"@ngx-translate/core": "^14.0.0",
"@turf/turf": "^5.1.6",
"angular-calendar": "^0.28.26",
"angularx-flatpickr": "^6.5.2",
"apexcharts": "^3.35.0",
"apollo-angular": "^2.6.0",
"date-fns": "^2.19.0",
"flatpickr": "^4.6.6",
"graphql": "^15.5.1",
"graphql-tag": "^2.10.3",
"jwt-decode": "^3.1.2",
"lightgallery": "^2.5.0",
"lodash": "^4.17.20",
"mapbox-gl": "^1.13.2",
"ng-apexcharts": "^1.7.1",
"ng-image-slider": "^2.8.0",
"rxjs": "^6.5.4",
"tslib": "^2.0.0",
"zone.js": "~0.11.4"
},
"devDependencies": {
"@angular-devkit/build-angular": "^13.2.3",
"@angular/cli": "~13.2.3",
"@angular/compiler-cli": "^13.2.2",
"@angular/language-service": "^13.2.2",
"@angularclass/hmr": "^2.1.3",
"@biesbjerg/ngx-translate-extract": "^4.2.0",
"@ngx-rocket/scripts": "^4.0.0",
"@types/jasmine": "~3.6.0",
"@types/jasminewd2": "^2.0.3",
"@types/lodash": "^4.14.161",
"@types/node": "^12.11.1",
"codelyzer": "^6.0.0",
"htmlhint": "^0.11.0",
"https-proxy-agent": "^5.0.0",
"husky": "^4.2.3",
"jasmine-core": "~3.6.0",
"jasmine-spec-reporter": "~5.0.0",
"karma": "~6.3.16",
"karma-chrome-launcher": "~3.1.0",
"karma-coverage-istanbul-reporter": "~3.0.2",
"karma-jasmine": "~4.0.0",
"karma-jasmine-html-reporter": "^1.5.0",
"karma-junit-reporter": "^2.0.1",
"prettier": "^2.0.2",
"pretty-quick": "^2.0.1",
"protractor": "~7.0.0",
"stylelint": "~13.2.1",
"stylelint-config-prettier": "^8.0.1",
"stylelint-config-recommended-scss": "~4.2.0",
"stylelint-config-standard": "~20.0.0",
"stylelint-scss": "~3.16.0",
"ts-node": "^8.8.1",
"tslint": "~6.1.0",
"tslint-config-prettier": "^1.14.0",
"typescript": "~4.5.5"
},
"prettier": {
"singleQuote": true,
"overrides": [
{
"files": "*.scss",
"options": {
"singleQuote": false
}
}
]
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
}
}