forked from paul18sma/recetar-app
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 2.3 KB
/
Copy pathpackage.json
File metadata and controls
74 lines (74 loc) · 2.3 KB
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
{
"name": "prescription-validator",
"version": "0.0.0",
"scripts": {
"ng": "ng",
"start": "node server.js",
"build": "ng build",
"build:dev": "ng build --configuration=dev",
"heroku-postbuild": "ng build --configuration=dev",
"test": "ng test",
"e2e": "ng e2e",
"lint": "eslint -c .eslintrc.js --ext .ts .",
"lint:fix": "eslint -c .eslintrc.js --ext .ts . --fix"
},
"private": true,
"dependencies": {
"@angular/animations": "^12.2.17",
"@angular/cdk": "^12.2.13",
"@angular/common": "~12.2.17",
"@angular/compiler": "~12.2.17",
"@angular/core": "~12.2.17",
"@angular/flex-layout": "^12.0.0-beta.35",
"@angular/forms": "~12.2.17",
"@angular/material": "^12.2.13",
"@angular/material-moment-adapter": "^12.2.13",
"@angular/platform-browser": "~12.2.17",
"@angular/platform-browser-dynamic": "~12.2.17",
"@angular/router": "~12.2.17",
"@types/crypto-js": "^4.2.2",
"@types/qrcode": "^1.5.5",
"angular-animations": "0.0.10",
"crypto-js": "^4.2.0",
"express": "^4.17.1",
"file-saver": "^2.0.5",
"jsbarcode": "^3.12.1",
"jwt-decode": "^2.2.0",
"moment": "^2.25.3",
"pdfmake": "^0.1.65",
"pdfmake-unicode": "0.0.1",
"pdfmake-wrapper": "^2.0.0",
"qrcode": "^1.5.4",
"rxjs": "~6.5.4",
"tslib": "^2.0.0",
"zone.js": "~0.11.4"
},
"devDependencies": {
"@angular-devkit/build-angular": "~12.2.18",
"@angular/cli": "~12.2.18",
"@angular/compiler-cli": "~12.2.17",
"@angular-eslint/eslint-plugin": "~12.2.0",
"@types/estree": "^1.0.2",
"@angular/language-service": "~12.2.17",
"@types/jasmine": "~3.6.0",
"@types/jasminewd2": "~2.0.3",
"@types/node": "^12.11.1",
"@types/pdfmake": "^0.1.12",
"@typescript-eslint/eslint-plugin": "^4.28.5",
"@typescript-eslint/eslint-plugin-tslint": "^4.28.5",
"@typescript-eslint/parser": "^4.28.5",
"codelyzer": "^6.0.0",
"eslint": "^7.31.0",
"jasmine-core": "~3.6.0",
"jasmine-spec-reporter": "~5.0.0",
"karma": "~6.4.4",
"karma-chrome-launcher": "~3.1.0",
"karma-coverage-istanbul-reporter": "~3.0.2",
"karma-jasmine": "~4.0.0",
"karma-jasmine-html-reporter": "^1.5.0",
"protractor": "~7.0.0",
"ts-node": "~8.3.0",
"tslint": "~6.1.0",
"typescript": "~4.3.5"
}
}