-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
86 lines (86 loc) · 3.62 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
{
"name": "enigmatry-angular-building-blocks",
"version": "0.0.0",
"scripts": {
"ng": "ng",
"start": "ng serve",
"build": "ng build",
"watch": "ng build --watch --configuration development",
"test": "ng test",
"automated-tests": "npm run entry-components:compile-fixed-theme && npm run entry-components:compile-theme && npm run scss-foundation:build && npm run scss-foundation:build-modules && npm run scss-foundation:test",
"lint": "ng lint && npm run entry-components:stylelint && npm run scss-foundation:stylelint && npm run demo-app:stylelint",
"typedoc": "typedoc",
"demo-app:stylelint": "cd apps/demo-app && stylelint --fix src/**/*.scss --config ../../.stylelintrc.json",
"entry-components:build": "ng build @enigmatry/entry-components",
"entry-components:watch": "ng build @enigmatry/entry-components --watch --configuration development",
"entry-components:compile-fixed-theme": "cd libs/entry-components && npm run compile-scss",
"entry-components:compile-theme": "cd libs/entry-components && npm run compile-generator",
"entry-components:stylelint": "cd libs/entry-components && npm run lint",
"scss-foundation:build": "cd libs/scss-foundation && npm run build",
"scss-foundation:build-modules": "cd libs/scss-foundation && npm run build-modules",
"scss-foundation:stylelint": "cd libs/scss-foundation && npm run lint",
"scss-foundation:test": "cd libs/scss-foundation && npm run test"
},
"private": true,
"dependencies": {
"@angular/animations": "^19.1.3",
"@angular/cdk": "^19.1.1",
"@angular/common": "^19.1.3",
"@angular/compiler": "^19.1.3",
"@angular/core": "^19.1.3",
"@angular/forms": "^19.1.3",
"@angular/material": "^19.1.1",
"@angular/platform-browser": "^19.1.3",
"@angular/platform-browser-dynamic": "^19.1.3",
"@angular/router": "^19.1.3",
"github-markdown-css": "^5.8.0",
"highlight.js": "^11.10.0",
"lodash-es": "^4.17.21",
"markdown-it": "^14.1.0",
"rxjs": "7.8.1",
"tslib": "^2.8.1",
"zone.js": "~0.15.0"
},
"devDependencies": {
"@angular-eslint/builder": "19.0.2",
"@angular-eslint/eslint-plugin": "19.0.2",
"@angular-eslint/eslint-plugin-template": "19.0.2",
"@angular-eslint/schematics": "19.0.2",
"@angular-eslint/template-parser": "19.0.2",
"@angular/build": "^19.1.4",
"@angular/cli": "^19.1.4",
"@angular/compiler-cli": "^19.1.3",
"@angular/material-date-fns-adapter": "19.1.1",
"@ckeditor/ckeditor5-angular": "^5.2.0",
"@ckeditor/ckeditor5-build-classic": "^37.0.0",
"@ngx-formly/core": "~6.3.12",
"@ngx-formly/material": "~6.3.12",
"@stylistic/stylelint-plugin": "^3.1.1",
"@types/markdown-it": "^14.1.2",
"@types/node": "^22.10.8",
"eslint": "^9.18.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-jsdoc": "50.6.2",
"eslint-plugin-prefer-arrow": "^1.2.3",
"jest": "29.7.0",
"jest-environment-node-single-context": "29.4.0",
"ng-packagr": "^19.1.0",
"postcss-scss": "^4.0.9",
"sass": "1.83.4",
"sass-true": "8.1.0",
"stylelint": "^16.13.2",
"stylelint-config-property-sort-order-smacss": "^10.0.0",
"stylelint-declaration-block-no-ignored-properties": "^2.8.0",
"stylelint-file-max-lines": "^1.0.0",
"stylelint-group-selectors": "^1.0.10",
"stylelint-scss": "^6.10.1",
"stylelint-use-nesting": "^6.0.0",
"typedoc": "^0.27.6",
"typedoc-plugin-markdown": "^4.4.1",
"typescript": "5.7.3",
"typescript-eslint": "^8.21.0"
},
"dependenciesComments": {
"stylelint-related-deps": "Keep them in line with the ones in libs/stylelint-config/package.json"
}
}