forked from openmrs/openmrs-ngx-formentry
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
97 lines (97 loc) · 2.79 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
{
"name": "@openmrs/ngx-formentry",
"version": "3.0.0",
"license": "MPL-2.0",
"scripts": {
"ng": "ng",
"start": "ng serve --proxy-config proxy.conf.json",
"build": "ng build ngx-formentry",
"build:lib": "ng build --prod",
"test": "ng test ngx-formentry --watch=false",
"test:watch": "ng test ngx-formentry",
"lint": "ng lint",
"e2e": "ng e2e"
},
"peerDependencies": {
"carbon-components": "10.x"
},
"dependencies": {
"@angular-devkit/core": "^10.2.3",
"@angular-extensions/elements": "^11.0.1",
"@angular/animations": "^11.2.14",
"@angular/cdk": "^11.2.13",
"@angular/common": "^11.2.14",
"@angular/compiler": "^11.2.14",
"@angular/core": "^11.2.14",
"@angular/forms": "^11.2.14",
"@angular/platform-browser": "^11.2.14",
"@angular/platform-browser-dynamic": "^11.2.14",
"@angular/router": "^11.2.14",
"@ng-select/ng-select": "^6.1.0",
"core-js": "^2.5.4",
"font-awesome": "^4.7.0",
"hammerjs": "^2.0.8",
"jquery": "^3.1.1",
"jspdf": "^2.5.1",
"lodash": "^4.17.4",
"moment": "^2.17.1",
"ng-pick-datetime": "^7.0.0",
"ngx-cookie": "^4.0.2",
"ngx-file-uploader": "^0.0.18",
"ngx-webcam": "^0.2.2",
"pdfmake": "0.1.40",
"reflect-metadata": "^0.1.9",
"rxjs": "~6.6.7",
"shelljs": "^0.7.0",
"slick-carousel": "^1.6.0",
"systemjs": "^6.11.0",
"time-ago-pipe": "^1.3.2",
"tree-model": "^1.0.5",
"tslib": "^2.0.0",
"zone.js": "~0.10.2"
},
"devDependencies": {
"@angular-devkit/build-angular": "~0.1102.14",
"@angular-eslint/builder": "4.3.1",
"@angular-eslint/eslint-plugin": "4.3.1",
"@angular-eslint/eslint-plugin-template": "4.3.1",
"@angular-eslint/schematics": "4.3.1",
"@angular-eslint/template-parser": "4.3.1",
"@angular/cli": "^11.2.14",
"@angular/compiler-cli": "^11.2.14",
"@angular/language-service": "^11.2.14",
"@types/jasmine": "~3.6.0",
"@types/jasminewd2": "~2.0.3",
"@types/node": "^12.11.1",
"@typescript-eslint/eslint-plugin": "4.16.1",
"@typescript-eslint/parser": "4.16.1",
"carbon-components": "^10.36.0",
"eslint": "^7.6.0",
"husky": "^4.3.0",
"jasmine-core": "~3.6.0",
"jasmine-spec-reporter": "~5.0.0",
"karma": "~6.3.3",
"karma-chrome-launcher": "~3.1.0",
"karma-coverage-istanbul-reporter": "~3.0.2",
"karma-firefox-launcher": "^1.1.0",
"karma-jasmine": "~4.0.0",
"karma-jasmine-html-reporter": "^1.5.0",
"lint-staged": "^10.4.0",
"ng-packagr": "^11.2.4",
"prettier": "2.1.2",
"protractor": "~7.0.0",
"ts-node": "~5.0.1",
"typescript": "~4.0.7"
},
"husky": {
"hooks": {
"pre-commit": "yarn run lint"
}
},
"lint-staged": {
"*.{ts,js,css,md}": [
"prettier --write",
"yarn run lint"
]
}
}