-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
100 lines (100 loc) · 2.68 KB
/
Copy pathpackage.json
File metadata and controls
100 lines (100 loc) · 2.68 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
{
"name": "educata-styles",
"version": "1.0.0",
"author": "The Educata authors",
"description": "Educata style library",
"keywords": [
"educata",
"styles",
"css",
"scss"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/educata/educata-style/issues"
},
"contributors": [
{
"name": "Konstantine Datunishvili",
"email": "konstantine@educata.dev",
"url": "https://konstantinedatunishvili.com"
},
{
"name": "Pridon Tetradze",
"email": "pridon@educata.dev",
"url": "https://pridontetradze.com"
}
],
"scripts": {
"prepare": "husky install",
"build": "ts-node scripts/build.ts",
"build:silent": "ts-node scripts/build.ts --silent",
"watch": "ts-node scripts/build.ts --watch",
"watch:silent": "ts-node scripts/build.ts --watch --silent",
"serve-client": "pnpm run docs:build && ts-node scripts/static-server.ts --port 3000",
"release": "release-it",
"release:minor": "release-it minor",
"release:patch": "release-it patch",
"release:major": "release-it major",
"docs:run": "pnpm run build && storybook dev -p 2222",
"docs:build": "pnpm run build && storybook build -o site/storybook && ts-node scripts/relocate-folder.ts --source site/storybook --destination site"
},
"devDependencies": {
"@chromatic-com/storybook": "3.2.4",
"@commitlint/cli": "^18.4.1",
"@commitlint/config-conventional": "^18.4.0",
"@storybook/addon-essentials": "8.5.8",
"@storybook/blocks": "8.5.8",
"@storybook/html": "8.5.8",
"@storybook/html-vite": "8.5.8",
"@storybook/manager-api": "^8.5.8",
"@storybook/theming": "^8.5.8",
"@types/express": "^5.0.0",
"@types/node": "^22.10.5",
"express": "^4.21.2",
"husky": "^8.0.0",
"release-it": "^18.1.1",
"sass": "^1.83.1",
"storybook": "8.5.8",
"ts-node": "^10.9.2",
"tslib": "^2.8.1",
"typescript": "^5.7.3"
},
"release-it": {
"git": {
"commitMessage": "chore: release v${version}"
},
"github": {
"release": true
},
"npm": {
"public": false
},
"plugins": {
"@release-it/conventional-changelog": {
"infile": "CHANGELOG.md",
"preset": {
"name": "conventionalcommits",
"types": [
{
"type": "feat",
"section": "Features"
},
{
"type": "fix",
"section": "Bug Fixes"
},
{
"type": "docs",
"section": "Documentations"
},
{
"type": "refactor",
"section": "Refactors"
}
]
}
}
}
}
}