This repository was archived by the owner on Oct 27, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 20
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.78 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 1.78 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
{
"name": "@tehik-ee/tedi-design-system",
"version": "0.0.0",
"main": "dist/index.js",
"scripts": {
"prepare": "husky",
"install:all": "npm install && cd libs/react-components && npm install && cd ../angular-components && npm install && cd ../tedi-core && npm install",
"install:react": "npm install && cd libs/react-components && npm install && cd ../tedi-core && npm install",
"install:angular": "npm install && cd libs/angular-components && npm install && cd ../tedi-core && npm install",
"start:react": "cd libs/react-components && npm run start",
"start:angular": "cd libs/angular-components && npm run start"
},
"repository": {
"type": "git",
"url": "https://github.com/TEHIK-EE/tedi-design-system.git"
},
"engines": {
"npm": ">=8.0.0",
"node": ">=18.0.0"
},
"devDependencies": {
"@commitlint/cli": "^19.8.1",
"@commitlint/config-conventional": "^19.8.1",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/commit-analyzer": "^13.0.0",
"@semantic-release/git": "^10.0.1",
"@semantic-release/npm": "^12.0.1",
"husky": "^9.0.11",
"lint-staged": "^16.1.6",
"semantic-release": "^24.2.7",
"semantic-release-monorepo": "^8.0.2",
"typescript": "5.9.2"
},
"commitlint": {
"extends": "@commitlint/config-conventional",
"rules": {
"subject-case": [
1,
"always",
"start-case"
],
"subject-min-length": [
2,
"always",
10
],
"references-empty": [
2,
"never"
]
}
},
"lint-staged": {
"libs/react-components/**/*.{css,scss}": [
"stylelint --fix",
"prettier --write"
],
"libs/react-components/**/*.{js,jsx,ts,tsx}": [
"eslint --fix",
"prettier --write"
]
}
}