This repository has been archived by the owner on Jul 25, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
82 lines (82 loc) · 3.02 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
{
"name": "@thymesave/silverware",
"version": "0.0.0",
"scripts": {
"ng": "ng",
"start": "ng serve --host 0.0.0.0 --disable-host-check",
"build:libs": "ng build @thymesave/core && ng build @thymesave/translations && ng build @thymesave/ingredients && ng build @thymesave/plugin",
"build:libs:watch:core": "ng build --watch @thymesave/core",
"build:libs:watch:translations": "ng build --watch @thymesave/translations",
"build:libs:watch:ingredients": "ng build --watch @thymesave/ingredients",
"build:libs:watch:plugin": "ng build --watch @thymesave/plugin",
"build:app": "ng build --configuration=production",
"build:app:watch": "ng build --watch",
"build": "npm run build:libs && npm run build:app",
"watch": "ng build --watch --configuration development",
"test": "ng test",
"postinstall": "if [ -z \"$CI\" ]; then pre-commit install && pre-commit install --hook-type commit-msg; fi;",
"lint": "ng lint",
"generate-translation-report": "./scripts/translation-report/run"
},
"private": true,
"dependencies": {
"@angular/animations": "14.3.0",
"@angular/cdk": "14.2.7",
"@angular/common": "14.3.0",
"@angular/compiler": "14.3.0",
"@angular/core": "14.3.0",
"@angular/flex-layout": "14.0.0-beta.41",
"@angular/forms": "14.3.0",
"@angular/material": "14.2.7",
"@angular/platform-browser": "14.3.0",
"@angular/platform-browser-dynamic": "14.3.0",
"@angular/router": "14.3.0",
"@angular/service-worker": "14.3.0",
"@auth0/auth0-angular": "1.11.1",
"@thymesave/material-food-icons": "1.0.1",
"hammerjs": "2.0.8",
"lodash": "4.17.21",
"pouchdb": "8.0.1",
"pouchdb-find": "8.0.1",
"pouchdb-upsert": "2.2.0",
"rxjs": "7.8.1",
"schema-dts": "1.1.2",
"string-similarity": "4.0.4",
"tslib": "2.6.1",
"uuid": "9.0.0",
"zone.js": "0.12.0"
},
"devDependencies": {
"@angular-devkit/architect": "0.1601.5",
"@angular-devkit/build-angular": "14.2.12",
"@angular-eslint/builder": "14.4.0",
"@angular-eslint/eslint-plugin": "14.4.0",
"@angular-eslint/eslint-plugin-template": "14.4.0",
"@angular-eslint/schematics": "14.4.0",
"@angular-eslint/template-parser": "14.4.0",
"@angular/cli": "14.2.12",
"@angular/compiler-cli": "14.3.0",
"@types/hammerjs": "2.0.41",
"@types/jasmine": "4.3.5",
"@types/lodash": "4.14.195",
"@types/node": "15.6.1",
"@types/pouchdb": "6.4.0",
"@types/pouchdb-upsert": "2.2.6",
"@types/string-similarity": "4.0.0",
"@types/uuid": "9.0.2",
"@typescript-eslint/eslint-plugin": "5.62.0",
"@typescript-eslint/parser": "5.62.0",
"eslint": "8.45.0",
"eslint-plugin-decorator-position": "5.0.2",
"eslint-plugin-import": "2.27.5",
"eslint-plugin-sort-keys-fix": "1.1.2",
"jasmine-core": "4.6.0",
"karma": "6.4.2",
"karma-chrome-launcher": "3.2.0",
"karma-coverage": "2.2.1",
"karma-jasmine": "5.1.0",
"karma-jasmine-html-reporter": "2.1.0",
"ng-packagr": "14.2.2",
"typescript": "4.8.4"
}
}