-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
90 lines (90 loc) · 2.9 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
{
"name": "courthive-components",
"version": "0.7.22",
"engines": {
"node": ">=16.16.0 < 21"
},
"description": "Components for competitions projects",
"files": [
"dist"
],
"main": "./dist/courthive-components.umd.js",
"module": "./dist/courthive-components.es.js",
"exports": {
".": {
"import": "./dist/courthive-components.es.js",
"require": "./dist/courthive-components.umd.js"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/CourtHive/courthive-components.git"
},
"keywords": [
"tournament",
"match",
"score",
"vanillajs",
"bracket"
],
"author": "Charles Allen",
"license": "MIT",
"bugs": {
"url": "https://github.com/CourtHive/courthive-components/issues"
},
"homepage": "https://courthive.github.io/courthive-component",
"scripts": {
"commits": "git log $(git describe --tags --abbrev=0)..HEAD --oneline --no-merges --pretty=format:'%s: %h' | sed '/courthive-components/d'",
"release": "npm run build && npm run commits && npm run release:patch",
"dev": "vite",
"build": "vite build",
"preview": "vite preview",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build -s ./public",
"deploy-storybook": "gh-pages -d storybook-static",
"pre-commit": "lint-staged",
"predeploy": "npm run build-storybook",
"prebuild": "rm -rf dist/*",
"lint": "eslint src --fix --cache",
"lint:report": "eslint src & eslint --cache src -f json > eslint-report.json",
"format": "prettier --write src",
"release:major": "npm version $(semver $npm_package_version -i major) && npm publish --tag latest",
"release:minor": "npm version $(semver $npm_package_version -i minor) && npm publish --tag latest",
"release:patch": "npm version $(semver $npm_package_version -i patch) && npm publish --tag latest"
},
"lint-staged": {
"*.{js,ts}": "eslint --cache --fix",
"*": "prettier --ignore-unknown --write"
},
"devDependencies": {
"@commitlint/cli": "19.4.0",
"@commitlint/config-conventional": "19.2.2",
"@storybook/addon-essentials": "^8.0.0",
"@storybook/addon-interactions": "^8.0.0",
"@storybook/addon-links": "^8.0.0",
"@storybook/blocks": "^8.0.0",
"@storybook/html": "^8.0.0",
"@storybook/html-vite": "^8.0.0",
"@typescript-eslint/eslint-plugin": "7.18.0",
"@typescript-eslint/parser": "7.18.0",
"eslint": "8.57.0",
"eslint-plugin-sonarjs": "1.0.4",
"eslint-plugin-storybook": "0.8.0",
"gh-pages": "6.1.1",
"lint-staged": "15.2.9",
"prettier": "2.8.8",
"semver": "7.6.3",
"storybook": "^8.0.0",
"vite": "5.4.1"
},
"dependencies": {
"@stitches/core": "1.2.8",
"@storybook/test": "^8.0.0",
"bulma": "1.0.2",
"class-variance-authority": "0.7.0",
"classnames": "2.5.1",
"dayjs": "1.11.12",
"husky": "9.1.4",
"tods-competition-factory": "2.2.9"
}
}