-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
115 lines (115 loc) · 3.83 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
106
107
108
109
110
111
112
113
114
115
{
"name": "trackify",
"version": "0.0.0",
"scripts": {
"ng": "ng",
"start": "ng serve",
"serve:mock": "npx json-server --watch db.json -m ./node_modules/json-server-auth",
"build": "ng build --configuration production",
"watch": "ng build --watch --configuration development",
"test": "npx jest --runInBand",
"test:ci": "npx jest --ci --runInBand",
"test:watch": "npx jest --watchAll",
"lint": "ng lint",
"compodoc": "compodoc -p tsconfig.json",
"serve-docs": "compodoc -s tsconfig.json",
"cy:verify": "cypress verify",
"e2e": "ng e2e",
"e2e:ci": "ng run trackify:e2e-ci",
"e2e:coverage": "npx nyc report --reporter=html --reporter=json --reporter=text-summary",
"report:combined": "./scripts/report.sh",
"changelog": "npx conventional-changelog -t -p angular -i CHANGELOG.md -s -r 0",
"cm": "cz",
"prepare": "husky install",
"release": "./scripts/release.sh"
},
"private": true,
"dependencies": {
"@angular/animations": "~13.3.3",
"@angular/cdk": "^13.1.1",
"@angular/common": "~13.3.3",
"@angular/compiler": "~13.3.3",
"@angular/core": "~13.3.3",
"@angular/flex-layout": "^13.0.0-beta.36",
"@angular/forms": "~13.3.3",
"@angular/material": "^13.1.1",
"@angular/platform-browser": "~13.3.3",
"@angular/platform-browser-dynamic": "~13.3.3",
"@angular/router": "~13.3.3",
"@angular/service-worker": "~13.3.3",
"@fortawesome/fontawesome-free": "^5.15.4",
"@ngneat/until-destroy": "^9.0.0",
"@ngrx/effects": "^13.0.2",
"@ngrx/router-store": "^13.0.2",
"@ngrx/store": "^13.0.2",
"@ngrx/store-devtools": "^13.0.2",
"assert": "^2.0.0",
"bcryptjs": "^2.4.3",
"crypto": "^1.0.1",
"crypto-browserify": "^3.12.0",
"https-browserify": "^1.0.0",
"json-server": "^0.17.0",
"json-server-auth": "^2.1.0",
"ngx-logger": "^5.0.4",
"os-browserify": "^0.3.0",
"roboto-fontface": "^0.10.0",
"rxdb": "^11.6.0",
"rxjs": "^7.4.0",
"stream-browserify": "^3.0.0",
"stream-http": "^3.2.0",
"tslib": "^2.3.0",
"zone.js": "~0.11.4"
},
"devDependencies": {
"@angular-devkit/build-angular": "~13.3.3",
"@angular-eslint/builder": "13.2.1",
"@angular-eslint/eslint-plugin": "13.2.1",
"@angular-eslint/eslint-plugin-template": "13.2.1",
"@angular-eslint/schematics": "13.2.1",
"@angular-eslint/template-parser": "13.2.1",
"@angular/cli": "~13.3.3",
"@angular/compiler-cli": "~13.3.3",
"@angular/language-service": "^13.3.3",
"@commitlint/cli": "^16.0.0",
"@commitlint/config-conventional": "^16.0.0",
"@compodoc/compodoc": "^1.1.16",
"@cypress/code-coverage": "^3.9.12",
"@cypress/schematic": "^1.6.0",
"@cypress/webpack-preprocessor": "^5.11.0",
"@istanbuljs/nyc-config-typescript": "^1.0.2",
"@jsdevtools/coverage-istanbul-loader": "^3.0.5",
"@types/bcryptjs": "^2.4.2",
"@types/gapi": "^0.0.41",
"@types/gapi.auth2": "^0.0.56",
"@types/jasmine": "~3.10.2",
"@types/jest": "^27.0.3",
"@types/node": "^16.11.14",
"@typescript-eslint/eslint-plugin": "5.19.0",
"@typescript-eslint/parser": "5.19.0",
"commitizen": "^4.2.4",
"conventional-changelog-cli": "^2.1.1",
"cypress": "9.5.4",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^8.5.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"husky": "^7.0.4",
"istanbul-lib-coverage": "^3.2.0",
"jasmine-core": "~3.10.1",
"jest": "^27.4.5",
"jest-jasmine2": "^27.4.5",
"jest-preset-angular": "^11.0.1",
"lint-staged": "^12.1.3",
"ng-mocks": "^13.4.2",
"nyc": "^15.1.0",
"prettier": "^2.5.1",
"ts-loader": "^9.2.6",
"ts-node": "^10.4.0",
"typescript": "~4.5.4"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}