This repository has been archived by the owner on Jan 25, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
105 lines (105 loc) · 3.33 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": "moment",
"version": "1.1.0",
"author": "Sean Wu",
"homepage": "https://github.com/seanwu1105/ionic-pwa-example-moment",
"scripts": {
"serve": "ionic serve",
"serve.hmr": "ionic serve -- --hmr",
"serve.prod": "ionic serve --prod",
"build": "ionic build --prod",
"build.watch.pwa": "ionic build --prod --watch",
"test": "ng test",
"test.ci": "ng test --no-watch --no-progress --browsers=ChromeHeadlessCI",
"lint": "prettier --check . && stylelint \"**/*.{css,scss,sass}\" && ng lint",
"e2e": "ng e2e",
"prepare": "husky install"
},
"private": true,
"dependencies": {
"@angular/common": "~11.2.12",
"@angular/core": "~11.2.8",
"@angular/forms": "~11.2.12",
"@angular/platform-browser": "~11.2.12",
"@angular/platform-browser-dynamic": "~11.2.12",
"@angular/router": "~11.2.12",
"@angular/service-worker": "~11.2.12",
"@ionic/angular": "^5.6.6",
"@ngneat/transloco": "^2.20.1",
"@ngneat/transloco-locale": "^1.4.0",
"@ngneat/until-destroy": "^8.0.4",
"@ngrx/component": "^11.1.1",
"@sentry/angular": "^6.2.5",
"@sentry/tracing": "^6.2.5",
"buffer": "^6.0.3",
"compressorjs": "^1.0.7",
"exifreader": "^3.15.0",
"image-capture": "^0.4.0",
"lodash-es": "^4.17.21",
"mime": "^2.5.2",
"ngx-pinch-zoom": "^2.5.5",
"pouchdb-adapter-idb": "^7.2.2",
"pouchdb-adapter-memory": "^7.2.2",
"process": "^0.11.10",
"rxdb": "^9.18.0",
"rxjs": "^6.6.7",
"stream-browserify": "^3.0.0",
"swiper": "^6.5.9",
"tslib": "^2.0.0",
"ua-parser-js": "^0.7.28",
"webrtc-adapter": "^7.7.1",
"zone.js": "^0.11.4"
},
"devDependencies": {
"@angular-devkit/build-angular": "^0.1102.8",
"@angular-eslint/builder": "^4.2.0",
"@angular-eslint/eslint-plugin": "^4.2.0",
"@angular-eslint/eslint-plugin-template": "^4.2.0",
"@angular-eslint/schematics": "^4.2.0",
"@angular-eslint/template-parser": "^4.2.0",
"@angular/cli": "~11.2.11",
"@angular/compiler": "~11.2.6",
"@angular/compiler-cli": "~11.2.12",
"@angular/language-service": "~11.2.12",
"@ionic/angular-toolkit": "^3.1.1",
"@types/geojson": "^7946.0.7",
"@types/jasmine": "^3.6.10",
"@types/jasminewd2": "~2.0.3",
"@types/lodash-es": "^4.17.4",
"@types/node": "^15.0.1",
"@types/pouchdb-adapter-idb": "^6.1.3",
"@types/pouchdb-adapter-memory": "^6.1.3",
"@types/ua-parser-js": "^0.7.35",
"@types/w3c-image-capture": "^1.0.2",
"@typescript-eslint/eslint-plugin": "^4.22.1",
"@typescript-eslint/parser": "^4.22.1",
"eslint": "^7.25.0",
"eslint-plugin-import": "2.22.1",
"eslint-plugin-rxjs": "^3.3.0",
"husky": "^6.0.0",
"jasmine-core": "^3.7.1",
"jasmine-spec-reporter": "^7.0.0",
"karma": "^6.3.2",
"karma-chrome-launcher": "~3.1.0",
"karma-coverage": "^2.0.3",
"karma-jasmine": "^4.0.1",
"karma-jasmine-html-reporter": "^1.5.0",
"lint-staged": "^10.5.4",
"prettier": "^2.2.1",
"protractor": "~7.0.0",
"stylelint": "^13.12.0",
"stylelint-config-standard": "^22.0.0",
"stylelint-scss": "^3.19.0",
"ts-node": "^9.1.1",
"typescript": "~4.1.3"
},
"license": "MIT",
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,ts,scss,css,html,md,yml,json}": "prettier --write"
}
}