-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
91 lines (91 loc) · 2.84 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
{
"name": "prognoz",
"version": "0.0.0",
"license": "MIT",
"scripts": {
"ng": "ng",
"start": "ng serve",
"build": "ng build",
"test": "ng test --browsers=ChromeHeadless --watch=false --code-coverage=true",
"lint": "tslint -p tsconfig.json",
"pretty-quick": "pretty-quick",
"format": "prettier --write \"src/**/*.ts\" \"src/**/*.html\" \"*.json\"",
"tslint-check": "tslint-config-prettier-check ./tslint.json",
"postbuild": "cd ./dist && gzip -k *.js && if [ -f *.css ]; then gzip -k *.css; fi",
"codecov": "./node_modules/.bin/codecov"
},
"private": true,
"dependencies": {
"@angular/animations": "^10.2.4",
"@angular/common": "^10.2.4",
"@angular/compiler": "^10.2.4",
"@angular/core": "^10.2.4",
"@angular/forms": "^10.2.4",
"@angular/platform-browser": "^10.2.4",
"@angular/platform-browser-dynamic": "^10.2.4",
"@angular/router": "^10.2.4",
"@ng-bootstrap/ng-bootstrap": "^7.0.0",
"@ng-select/ng-select": "^5.0.8",
"angular2-notifications": "^9.0.0",
"bootstrap": "^4.5.3",
"bootswatch": "^4.5.2",
"chart.js": "^2.9.4",
"core-js": "^2.5.4",
"fingerprintjs2": "^2.1.2",
"font-awesome": "^4.7.0",
"lodash": "^4.17.21",
"moment": "^2.29.4",
"ng-recaptcha": "^6.1.0",
"ng2-charts": "^2.4.2",
"ngx-progressbar": "^6.0.3",
"ngx-quill": "^12.0.1",
"object-to-formdata": "^4.1.0",
"pusher-js": "^7.0.3",
"quill": "^1.3.7",
"rxjs": "^6.6.3",
"tslib": "^2.0.0",
"ua-parser-js": "^0.7.33",
"zone.js": "~0.10.2"
},
"devDependencies": {
"@angular-builders/custom-webpack": "^10.0.1",
"@angular-devkit/build-angular": "~0.1002.1",
"@angular/cli": "^10.2.1",
"@angular/compiler-cli": "^10.2.4",
"@angular/language-service": "^10.2.4",
"@angular/localize": "^10.2.4",
"@types/jasmine": "^3.5.0",
"@types/jasminewd2": "^2.0.3",
"@types/lodash": "^4.14.135",
"@types/node": "^12.11.1",
"codecov": "^3.7.1",
"codelyzer": "^6.0.0",
"dotenv": "^16.0.0",
"husky": "^4.3.6",
"jasmine-core": "^3.6.0",
"jasmine-spec-reporter": "~5.0.0",
"karma": "~5.0.0",
"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",
"lint-staged": "^10.4.2",
"prettier": "^2.1.2",
"pretty-quick": "^3.0.2",
"ts-node": "^8.3.0",
"tslint": "~6.1.0",
"tslint-config-prettier": "^1.18.0",
"typescript": "~4.0.5"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged && pretty-quick --staged"
}
},
"lint-staged": {
"*.ts": [
"npm run lint --files",
"git add ."
]
}
}