This repository has been archived by the owner on Jul 23, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
94 lines (94 loc) · 2.64 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
{
"name": "ch.ckl.st-client",
"version": "1.0.0",
"license": "MIT",
"description": "",
"scripts": {
"ng": "ng",
"prettier": "prettier --parser typescript --write '**/*.ts'",
"start": "ng serve --host 0.0.0.0",
"build": "ng build --prod && workbox generateSW workbox-config.js",
"test": "snyk test && ng test",
"lint": "ng lint",
"e2e": "ng e2e",
"gen-sw": "workbox wizard",
"update-sw": "workbox generateSW workbox-config.js",
"start-sw": "npm run build && cd dist && http-server -c-1 -cors"
},
"repository": {
"type": "git",
"url": "git+https://github.com/pablooliva/ch.ckl.st-client.git"
},
"author": "pablo oliva",
"bugs": {
"url": "https://github.com/pablooliva/ch.ckl.st-client/issues"
},
"homepage": "https://github.com/pablooliva/ch.ckl.st-client#readme",
"private": true,
"dependencies": {
"@angular/animations": "8.2.14",
"@angular/cdk": "8.2.3",
"@angular/common": "8.2.14",
"@angular/compiler": "8.2.14",
"@angular/core": "8.2.14",
"@angular/flex-layout": "8.0.0-beta.27",
"@angular/forms": "8.2.14",
"@angular/http": "7.2.15",
"@angular/material": "8.2.3",
"@angular/platform-browser": "8.2.14",
"@angular/platform-browser-dynamic": "8.2.14",
"@angular/router": "8.2.14",
"@sentry/browser": "5.10.2",
"core-js": "3.6.1",
"hammerjs": "2.0.8",
"ngx-autosize": "1.7.2",
"ngx-chips": "2.1.0",
"ngx-clipboard": "12.3.0",
"ngx-color-picker": "8.2.0",
"ngx-quill-editor": "2.2.2",
"ngx-toastr": "11.2.1",
"quill": "1.3.7",
"rxjs": "6.5.4",
"zone.js": "0.10.2"
},
"devDependencies": {
"@angular-devkit/build-angular": "0.803.21",
"@angular/cli": "8.3.21",
"@angular/compiler-cli": "8.2.14",
"@angular/language-service": "8.2.14",
"@types/jasmine": "3.5.0",
"@types/jasminewd2": "2.0.8",
"@types/node": "13.1.2",
"@types/quill": "2.0.3",
"codelyzer": "5.2.1",
"http-server": "0.12.0",
"husky": "3.1.0",
"jasmine-core": "3.5.0",
"jasmine-spec-reporter": "4.2.1",
"karma": "4.4.1",
"karma-chrome-launcher": "3.1.0",
"karma-coverage-istanbul-reporter": "2.1.1",
"karma-jasmine": "2.0.1",
"karma-jasmine-html-reporter": "1.5.1",
"lint-staged": "9.5.0",
"node-sass": "4.13.0",
"prettier": "1.19.1",
"protractor": "5.4.2",
"snyk": "1.272.0",
"ts-node": "8.5.4",
"tslint": "5.20.1",
"typescript": "3.5.3",
"workbox-cli": "4.3.1"
},
"lint-staged": {
"*.{ts,tsx}": [
"prettier --parser typescript --write",
"git add"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
}
}