-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
117 lines (117 loc) · 3.84 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
111
112
113
114
115
116
117
{
"name": "taiga-front-next",
"version": "0.0.0",
"license": "AGPL-3.0-or-later",
"private": true,
"scripts": {
"cy:open": "cypress open",
"cy:run": "cypress run",
"ng": "ng",
"start": "ng serve",
"build": "ng build",
"test": "ng test",
"lint": "npm run lint:ts && npm run lint:css && npm run lint:html",
"lint:ts": "ng lint",
"lint:css": "npx stylelint 'src/*.css'",
"lint:html": "npx htmlhint 'src/*.html'",
"e2e": "ng e2e",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook",
"build:elements": "ng build --prod --tsConfig tsconfig.webcomponent.json --main src/main-webcomponent.ts --outputPath dist/elements --output-hashing none",
"pack:elements": "sh scripts/concat-dist-files.sh"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS && npm run lint && node ./scripts/append-license.js"
}
},
"dependencies": {
"@angular/animations": "~10.0.14",
"@angular/cdk": "^10.1.3",
"@angular/common": "~10.0.14",
"@angular/compiler": "~10.0.14",
"@angular/core": "~10.0.14",
"@angular/elements": "^10.0.14",
"@angular/forms": "~10.0.14",
"@angular/platform-browser": "~10.0.14",
"@angular/platform-browser-dynamic": "~10.0.14",
"@angular/router": "~10.0.14",
"@briebug/cypress-schematic": "^3.3.0",
"@ngrx/component": "^10.0.0",
"@ngrx/component-store": "^10.0.0",
"@ngrx/effects": "^10.0.0",
"@ngrx/router-store": "^10.0.0",
"@ngrx/schematics": "^10.0.0",
"@ngrx/store": "^10.0.0",
"@ngrx/store-devtools": "^10.0.0",
"@ngx-translate/core": "^13.0.0",
"@ngx-translate/http-loader": "^6.0.0",
"@types/showdown": "^2.0.1",
"@types/turndown": "^5.0.0",
"change-case": "^4.1.1",
"document-register-element": "^1.14.5",
"elements-zone-strategy": "^10.0.0",
"imurmurhash": "^0.1.4",
"normalize.css": "^8.0.1",
"rxjs": "~6.6.2",
"sanitize-html": "^2.4.0",
"showdown": "^2.1.0",
"taiga-html-editor": "https://github.com/taigaio/taiga-html-editor#4f51e47",
"tslib": "^2.0.1",
"turndown": "^6.0.0",
"zone.js": "~0.10.3"
},
"devDependencies": {
"@angular-builders/custom-webpack": "^10.0.0",
"@angular-builders/jest": "^10.0.0",
"@angular-devkit/build-angular": "~0.1000.7",
"@angular/cli": "~10.0.8",
"@angular/compiler-cli": "~10.0.14",
"@babel/core": "^7.11.4",
"@ckeditor/ckeditor5-inspector": "^2.2.0",
"@commitlint/cli": "^9.1.2",
"@commitlint/config-conventional": "^9.1.2",
"@cypress/webpack-preprocessor": "5.4.4",
"@ngneat/spectator": "^5.13.0",
"@storybook/addon-a11y": "^6.0.18",
"@storybook/addon-actions": "^6.0.18",
"@storybook/addon-centered": "^5.3.19",
"@storybook/addon-knobs": "^6.0.18",
"@storybook/addon-links": "^6.0.18",
"@storybook/addon-notes": "^5.3.19",
"@storybook/addons": "^6.0.18",
"@storybook/angular": "^6.0.18",
"@types/faker": "^4.1.12",
"@types/jasmine": "~3.5.12",
"@types/jasminewd2": "~2.0.8",
"@types/jest": "^26.0.10",
"@types/node": "^14.6.0",
"@types/sanitize-html": "^2.3.2",
"babel-loader": "^8.1.0",
"codelyzer": "^6.0.0",
"cypress": "5.0.0",
"factory.ts": "^0.5.1",
"faker": "^4.1.0",
"globby": "^11.0.1",
"htmlhint": "^0.14.1",
"husky": "^4.2.5",
"jasmine-core": "~3.6.0",
"jasmine-spec-reporter": "~5.0.2",
"jest": "^26.4.1",
"ng-mocks": "^10.1.2",
"postcss-import": "^12.0.1",
"postcss-mixins": "^6.2.3",
"postcss-preset-env": "^6.7.0",
"rxjs-marbles": "^6.0.1",
"stylelint": "^13.6.1",
"stylelint-config-standard": "^20.0.0",
"stylelint-order": "^4.1.0",
"ts-jest": "^26.2.0",
"ts-loader": "8.0.2",
"ts-morph": "^8.0.0",
"ts-node": "~8.10.2",
"tslint": "~6.1.3",
"typescript": "~3.9.7",
"utility-types": "^3.10.0"
}
}