-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpackage.json
110 lines (110 loc) · 4.21 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
106
107
108
109
110
{
"name": "dejajs-component",
"description": "Angular Components Library",
"homepage": "https://github.com/DSI-HUG/dejajs-components",
"bugs": "https://github.com/DSI-HUG/dejajs-components/issues",
"author": "Team DSI-HUG - Hôpital Univesitaire de Genève - DSI - Domaine Patient",
"license": "Apache-2.0",
"keywords": [
"angular",
"material",
"component"
],
"repository": {
"type": "git",
"url": "https://github.com/DSI-HUG/dejajs-components.git"
},
"scripts": {
"ng": "ng",
"start": "ng serve",
"build": "ng build --configuration production",
"test": "ng test",
"test:lib": "ng test @deja-js/component --watch=false",
"test:lib:watch": "ng test @deja-js/component --watch=true",
"test:lib:ci": "ng test @deja-js/component --watch=false --source-map=false --browsers=ChromeHeadless",
"lint": "ng lint",
"e2e": "ng e2e",
"license-check": "node scripts/licenses.js",
"build:lib": "node --max-old-space-size=8192 ./node_modules/@angular/cli/bin/ng build @deja-js/component --configuration=production",
"build:lib:watch": "node --max-old-space-size=8192 ./node_modules/@angular/cli/bin/ng build @deja-js/component --watch",
"release": "semantic-release --no-ci",
"release:ci": "semantic-release",
"postinstall": "ngcc && node ./husky.js",
"stats": "webpack-bundle-analyzer ./dist/demo/stats.json",
"analyze": "ng build --statsJson=true && webpack-bundle-analyzer --port 8989 ./dist/demo/stats.json",
"analyze:prod": "ng build --prod=true --statsJson=true && webpack-bundle-analyzer --port 8989 ./dist/demo/stats.json",
"commit": "git-cz"
},
"dependencies": {
"@angular/animations": "~14.1.1",
"@angular/cdk": "~14.1.1",
"@angular/common": "~14.1.1",
"@angular/compiler": "~14.1.1",
"@angular/core": "~14.1.1",
"@angular/forms": "~14.1.1",
"@angular/localize": "~14.1.1",
"@angular/material": "~14.1.1",
"@angular/platform-browser": "~14.1.1",
"@angular/platform-browser-dynamic": "~14.1.1",
"@angular/router": "~14.1.1",
"@fontsource-variable/material-symbols-outlined": "^5.0.12",
"ckeditor4": "~4.24.0",
"core-js": "~3.24.1",
"date-fns": "~2.29.1",
"json-object-mapper": "~1.7.1",
"lodash-es": "~4.17.21",
"monaco-editor": "0.24.0",
"ngx-mask": "11.1.4",
"prismjs": "~1.28.0",
"rxjs": "~7.5.6",
"showdown": "~2.1.0",
"tslib": "~2.4.0",
"zone.js": "~0.11.7"
},
"devDependencies": {
"@angular-devkit/architect": "~0.1401.1",
"@angular-devkit/build-angular": "~14.2.13",
"@angular/cli": "~14.2.12",
"@angular/compiler-cli": "~14.1.1",
"@angular/language-service": "~14.1.1",
"@commitlint/cli": "~17.0.3",
"@commitlint/config-conventional": "~17.0.3",
"@hug/eslint-config": "~8.0.1",
"@qiwi/multi-semantic-release": "~7.0.0",
"@semantic-release/changelog": "~6.0.1",
"@semantic-release/git": "~10.0.1",
"@types/ckeditor4": "~4.16.4",
"@types/jasmine": "~4.0.3",
"@types/jasminewd2": "~2.0.10",
"@types/lodash-es": "~4.17.6",
"@types/node": "~18.6.4",
"@types/prismjs": "~1.26.0",
"@types/showdown": "~2.0.0",
"eslint": "~8.21.0",
"eslint-plugin-deprecation": "~1.3.2",
"gh-pages": "~4.0.0",
"husky": "~8.0.1",
"jasmine-core": "~4.3.0",
"jasmine-spec-reporter": "~7.0.0",
"karma": "~6.4.0",
"karma-chrome-launcher": "~3.1.1",
"karma-coverage-istanbul-reporter": "~3.0.3",
"karma-jasmine": "~5.1.0",
"karma-jasmine-html-reporter": "~2.0.0",
"ng-packagr": "~14.1.0",
"semantic-release": "~21.0.7",
"ts-node": "~10.9.1",
"typescript": "~4.7.4",
"webpack-bundle-analyzer": "~4.5.0"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
}
}