-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
96 lines (96 loc) · 3.2 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
{
"name": "chordbomb",
"version": "1.2.0",
"scripts": {
"ng": "ng",
"start": "ng serve -o",
"hmr": "ng serve -o --configuration hmr",
"build": "ng build",
"build:prod": "ng build --configuration production",
"test": "ng test",
"test:headless": "ng test --browsers=ChromeHeadless --watch=false",
"lint": "run-p lint:ts lint:tsc",
"style": "import-sort -l \"**/{src,tests}/**/*.ts\" && prettier --check \"**/{src,tests}/**/*.{*css,ts}\"",
"style:fix": "import-sort --write \"**/{src,tests}/**/*.ts\" && prettier --write \"**/{src,tests}/**/*.{*css,ts}\"",
"lint:fix": "run-s lint:ts:fix lint:tsc",
"lint:ts": "tslint --config tslint.json --project . -e \"**/{test,polyfills}.ts\"",
"lint:ts:fix": "tslint --config tslint.json --fix --project . -e \"**/{test,polyfills}.ts\"",
"lint:tsc": "tsc --noEmit --skipLibCheck"
},
"private": true,
"dependencies": {
"@angular/animations": "~12.2.17",
"@angular/cdk": "^11.2.11",
"@angular/common": "~12.2.17",
"@angular/compiler": "~12.2.17",
"@angular/core": "~12.2.17",
"@angular/fire": "^6.1.4",
"@angular/forms": "~12.2.17",
"@angular/material": "^11.2.11",
"@angular/platform-browser": "~12.2.17",
"@angular/platform-browser-dynamic": "~12.2.17",
"@angular/router": "~12.2.17",
"algoliasearch": "^3.35.1",
"angular-instantsearch": "3.0.0-beta.5",
"firebase": "^8.4.3",
"instantsearch.css": "^7.4.5",
"instantsearch.js": "^3.6.0",
"ngx-toastr": "^13.2.1",
"rxjs": "~6.6.0",
"tslib": "^2.0.0",
"zone.js": "~0.11.4"
},
"devDependencies": {
"@angular-devkit/architect": "0.1202.18",
"@angular-devkit/build-angular": "~12.2.18",
"@angular/cli": "~12.2.18",
"@angular/compiler-cli": "~12.2.17",
"@angularclass/hmr": "^3.0.0",
"@fortawesome/angular-fontawesome": "^0.9.0",
"@fortawesome/fontawesome-svg-core": "^1.2.35",
"@fortawesome/free-brands-svg-icons": "^5.15.3",
"@fortawesome/free-solid-svg-icons": "^5.15.3",
"@types/jasmine": "~3.6.0",
"@types/node": "^12.11.1",
"codelyzer": "^6.0.0",
"cross-conf-env": "^1.2.1",
"firebase-tools": "^8.0.0",
"fuzzy": "^0.1.3",
"http-server": "^0.12.3",
"import-sort": "^6.0.0",
"import-sort-cli": "^6.0.0",
"import-sort-parser-typescript": "^6.0.0",
"import-sort-style-module": "^6.0.0",
"init-dev-env": "^1.0.0",
"inquirer": "^6.2.2",
"inquirer-autocomplete-prompt": "^1.0.1",
"jasmine-core": "^3.7.1",
"jasmine-spec-reporter": "~5.0.0",
"karma": "~6.3.2",
"karma-chrome-launcher": "~3.1.0",
"karma-coverage": "~2.0.3",
"karma-jasmine": "~4.0.0",
"karma-jasmine-html-reporter": "^1.5.0",
"ngx-abstract-control-as": "1.0.7",
"npm-run-all": "^4.1.5",
"open": "^7.0.3",
"postcss": "^8.2.15",
"prettier": "^2.2.1",
"protractor": "~7.0.0",
"rimraf": "^3.0.2",
"ts-node": "~8.3.0",
"tslint": "~6.1.0",
"tslint-config-prettier": "^1.18.0",
"tslint-etc": "^1.13.9",
"tslint-plugin-prettier": "^2.3.0",
"tsutils": "^3.21.0",
"typescript": "~4.3.5"
},
"importSort": {
".ts, .tsx": {
"parser": "typescript",
"style": "module",
"options": {}
}
}
}