-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
138 lines (138 loc) · 4.76 KB
/
package.json
File metadata and controls
138 lines (138 loc) · 4.76 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
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
{
"name": "@tedi-design-system/angular",
"version": "0.0.0-semantic-version",
"type": "module",
"main": "community.mjs",
"module": "community.mjs",
"exports": {
"./index.css": {
"default": "./index.css"
}
},
"scripts": {
"prepare": "husky",
"start": "ng run angular-components:storybook",
"build": "ng build angular-components --configuration production && sass --load-path=node_modules src/styles/index.scss dist/index.css --style=compressed --no-source-map && replace-in-file //fonts//g \"./fonts/\" dist/index.css --isRegex && mkdir -p dist/fonts && cp -a node_modules/@tedi-design-system/core/fonts/* dist/fonts/",
"build:sb": "ng run angular-components:build-storybook && replace-in-file //fonts//g \"./fonts/\" dist/storybook-static/main.css --isRegex",
"lint": "stylelint \"tedi/**/*.scss\" --fix && ng lint angular-components --fix",
"test": "jest --passWithNoTests",
"test:watch": "jest --watch",
"test:coverage": "jest --config ./jest.config.ts --coverage",
"install:clean": "rm -rf node_modules && npm install",
"release": "npx semantic-release",
"chromatic": "npx chromatic --project-token=$CHROMATIC_PROJECT_TOKEN --build-script-name=build:sb --baseline-branch=rc --include=\"tedi/**/*.stories.*\""
},
"peerDependencies": {
"@angular/animations": "^19.0.0 || ^20.0.0 || ^21.0.0",
"@angular/cdk": "^19.0.0 || ^20.0.0 || ^21.0.0",
"@angular/common": "^19.0.0 || ^20.0.0 || ^21.0.0",
"@angular/core": "^19.0.0 || ^20.0.0 || ^21.0.0",
"@angular/forms": "^19.0.0 || ^20.0.0 || ^21.0.0",
"@angular/platform-browser": "^19.0.0 || ^20.0.0 || ^21.0.0",
"ngx-float-ui": "^19.0.1 || ^20.0.0 || ^21.0.0"
},
"dependencies": {
"@tedi-design-system/core": "^3.3.0"
},
"devDependencies": {
"@angular-devkit/core": "19.2.15",
"@angular-devkit/schematics": "19.2.15",
"@angular-eslint/builder": "19.7.0",
"@angular-eslint/eslint-plugin": "19.7.0",
"@angular-eslint/eslint-plugin-template": "19.7.0",
"@angular-eslint/schematics": "19.7.0",
"@angular-eslint/template-parser": "19.7.0",
"@angular/animations": "19.2.15",
"@angular/cdk": "19.2.15",
"@angular/cli": "19.2.15",
"@angular/common": "19.2.15",
"@angular/compiler-cli": "19.2.15",
"@angular/core": "19.2.15",
"@angular/forms": "19.2.15",
"@angular/language-service": "19.2.15",
"@angular/platform-browser": "19.2.15",
"@angular/platform-browser-dynamic": "19.2.15",
"@angular/router": "19.2.15",
"@commitlint/cli": "^19.8.1",
"@commitlint/config-conventional": "^20.4.2",
"@compodoc/compodoc": "^1.1.26",
"@etchteam/storybook-addon-status": "^5.0.0",
"@schematics/angular": "21.2.0",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/commit-analyzer": "^13.0.1",
"@semantic-release/git": "^10.0.1",
"@semantic-release/npm": "^13.1.5",
"@storybook/addon-a11y": "^8.6.8",
"@storybook/addon-essentials": "^8.6.8",
"@storybook/addon-interactions": "^8.6.8",
"@storybook/angular": "^8.6.12",
"@storybook/blocks": "^8.6.8",
"@storybook/manager-api": "^8.6.8",
"@storybook/test": "^8.6.8",
"@storybook/theming": "^8.6.8",
"@testing-library/angular": "^17.3.7",
"@types/jest": "^29.5.14",
"@types/node": "^22.10.5",
"@typescript-eslint/eslint-plugin": "^8.28.0",
"angular-eslint": "^21.0.1",
"chokidar": "^4.0.3",
"chromatic": "^13.3.3",
"eslint-plugin-prettier": "^5.2.1",
"husky": "^9.0.11",
"identity-obj-proxy": "^3.0.0",
"jest": "^29.7.0",
"jest-preset-angular": "^14.5.3",
"lint-staged": "^16.1.6",
"ng-packagr": "^19.2.0",
"ngx-float-ui": "19.0.1",
"prettier": "^3.4.2",
"readdirp": "4.1.2",
"replace-in-file": "^8.3.0",
"sass": "^1.86.1",
"semantic-release": "^25.0.3",
"storybook": "^8.4.7",
"storybook-addon-angular-router": "^1.10.1",
"storybook-addon-pseudo-states": "^4.0.3",
"stylelint": "^17.0.0",
"stylelint-config-prettier-scss": "^1.0.0",
"stylelint-config-recess-order": "^7.4.0",
"stylelint-config-standard-scss": "^17.0.0",
"ts-node": "^10.9.2",
"tslib": "^2.5.0",
"typescript": "5.8"
},
"commitlint": {
"extends": "@commitlint/config-conventional",
"rules": {
"subject-case": [
1,
"always",
"start-case"
],
"subject-min-length": [
2,
"always",
10
],
"references-empty": [
2,
"never"
]
}
},
"lint-staged": {
"{src,tedi}/**/*.{css,scss}": [
"stylelint --fix"
],
"src/**/*.{ts,html}": [
"prettier --write"
]
},
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/TEDI-Design-System/angular.git"
}
}