-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
96 lines (96 loc) · 3.64 KB
/
Copy pathpackage.json
File metadata and controls
96 lines (96 loc) · 3.64 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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
{
"name": "dpio-application",
"version": "1.0.0",
"private": true,
"scripts": {
"ng": "ng",
"jest": "jest",
"postinstall": "ngcc",
"prettier-fix": "node ./node_modules/prettier/bin-prettier.js --write \"*.{js,json,css,md,ts,html,component.html}\" \"**/*.{js,json,css,md,ts,html,component.html}\"",
"start": "ng serve --open --proxy-config proxy.conf.json",
"start:aot": "ng serve --aot --proxy-config proxy.conf.js",
"build": "ng build --prod --progress --build-optimizer",
"test": "jest --watch=false",
"test:ci": "npm run lint -s && jest --ci --useStderr --watchAll=false --env=jsdom --reporters=default --reporters=jest-junit --coverage --coverageReporters=text --coverageReporters=cobertura",
"lint": "ng lint --type-check",
"lint-fix": "ng lint --fix --type-check",
"fix": "npm run lint-fix && npm run prettier-fix",
"translations:extract": "ngx-translate-extract --input ./apps --output ./libs/translations/template.json --format=json --clean -sort --marker extract",
"e2e": "ng e2e",
"update": "ng update",
"update:check": "ng update",
"generate": "ng generate",
"ci": "npm run lint && npm run test:ci && npm run e2e && npm run build"
},
"engines": {
"node": ">=12"
},
"lint-staged": {
"*.{js,json,css,md,ts,html,component.html}": "prettier --write"
},
"husky": {
"hooks": {
"pre-push": "npm run lint && npm run build",
"pre-commit": "lint-staged"
}
},
"dependencies": {
"@angular/animations": "^10.0.1",
"@angular/cdk": "^10.0.0",
"@angular/common": "^10.0.1",
"@angular/compiler": "^10.0.1",
"@angular/core": "^10.0.1",
"@angular/forms": "^10.0.1",
"@angular/language-service": "^10.0.1",
"@angular/material": "^10.0.0",
"@angular/platform-browser": "^10.0.1",
"@angular/platform-browser-dynamic": "^10.0.1",
"@angular/router": "^10.0.1",
"@angular/service-worker": "^10.0.1",
"@ngrx/effects": "^10.0.0-beta.0",
"@ngrx/router-store": "^10.0.0-beta.0",
"@ngrx/store": "^10.0.0-beta.0",
"@ngrx/store-devtools": "^10.0.0-beta.0",
"@ngx-translate/core": "^13.0.0",
"@ngx-translate/http-loader": "^6.0.0",
"hammerjs": "^2.0.8",
"jwt-decode": "^2.2.0",
"lodash": "^4.17.20",
"material-design-icons": "^3.0.1",
"rxjs": "^6.5.5",
"tslib": "2.0.0",
"uuid": "8.0.0",
"web-animations-js": "^2.3.2",
"zone.js": "^0.10.3"
},
"devDependencies": {
"@angular-devkit/build-angular": "^0.1000.0",
"@angular/cli": "10.0.0",
"@angular/compiler-cli": "10.0.1",
"@ngrx/schematics": "^10.0.0-beta.0",
"@types/jasmine": "^3.5.11",
"@types/jasminewd2": "~2.0.8",
"@types/jest": "^26.0.14",
"@types/jsonwebtoken": "^8.5.0",
"@types/lodash": "^4.14.157",
"@types/node": "^14.0.14",
"codelyzer": "^6.0.0-next.1",
"https-proxy-agent": "^5.0.0",
"husky": "4.2.5",
"jasmine-core": "^3.5.0",
"jasmine-spec-reporter": "^5.0.2",
"jest": "^26.4.2",
"jest-junit": "^11.1.0",
"jest-preset-angular": "^8.3.1",
"lint-staged": "10.2.11",
"prettier": "^2.0.5",
"protractor": "^7.0.0",
"puppeteer": "^4.0.1",
"ts-helpers": "1.1.2",
"ts-loader": "^7.0.2",
"ts-node": "~8.10.2",
"tslint": "^6.1.2",
"tslint-config-prettier": "1.18.0",
"typescript": "~3.9.5"
}
}