-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
67 lines (67 loc) · 2.08 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
{
"name": "holiday.css",
"version": "0.11.2",
"description": "A minimalist classless CSS theme with dark mode support. Only 5 KB.",
"main": "dist/holiday.css",
"style": "dist/holiday.css",
"scripts": {
"start": "eleventy --serve",
"test": "stylelint \"src/**/*.css\" \".storybook/**/*.css\" && prettier --check .",
"build": "cat node_modules/modern-normalize/modern-normalize.css src/css/*.css src/css/themes/bulma.css > dist/holiday.css",
"build:site": "eleventy",
"version": "npm run build && cross-env-shell 'replace \"holiday\\.css@\\d+\\.\\d+\\.\\d+\" holiday.css@$npm_package_version README.md site/ -r' && git add dist/ site/ README.md",
"postversion": "git push && git push --tags && npm publish",
"prepare": "husky install",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build",
"chromatic": "chromatic --exit-zero-on-changes"
},
"keywords": [
"css",
"css-theme",
"css-framework",
"framework",
"classless",
"classless-theme",
"class-free"
],
"files": [
"dist/holiday.css"
],
"author": "Evgeny Orekhov",
"license": "MIT",
"devDependencies": {
"@11ty/eleventy": "^2.0.1",
"@babel/core": "^7.23.3",
"@babel/preset-env": "^7.23.3",
"@storybook/addon-actions": "^7.0.7",
"@storybook/addon-essentials": "^7.5.3",
"@storybook/addon-links": "^7.5.3",
"@storybook/react": "^7.0.7",
"@storybook/react-webpack5": "^7.5.3",
"@twinscom/stylelint-config": "^10.0.0",
"babel-loader": "^9.1.3",
"chromatic": "^9.0.0",
"cross-env": "^7.0.3",
"highlight.js": "^11.9.0",
"html-webpack-plugin": "^5.5.3",
"husky": "^8.0.3",
"lint-staged": "^15.0.2",
"modern-normalize": "^2.0.0",
"prettier": "^3.0.3",
"prismjs": "^1.29.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"replace": "^1.2.2",
"storybook": "^7.5.3",
"stylelint": "^15.11.0"
},
"lint-staged": {
"*.{js,css,json,yml,yaml,md,html}": "prettier --write",
"*.css": "stylelint --fix"
},
"engines": {
"node": "^18.16.0",
"npm": "^9.5.1"
}
}