forked from EvgenyOrekhov/holiday.css
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 1.78 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
{
"name": "holiday.css",
"version": "0.9.8",
"description": "A classless CSS theme",
"main": "dist/holiday.css",
"style": "dist/holiday.css",
"scripts": {
"start": "eleventy --serve",
"test": "stylelint \"src/**/*.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",
"preversion": "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": "start-storybook -p 6006",
"build-storybook": "build-storybook",
"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": "^1.0.0",
"@babel/core": "^7.17.0",
"@storybook/addon-actions": "^6.4.18",
"@storybook/addon-essentials": "^6.4.18",
"@storybook/addon-links": "^6.4.18",
"@storybook/react": "^6.4.18",
"@twinscom/stylelint-config": "^6.0.2",
"babel-loader": "^8.2.3",
"chromatic": "^6.4.3",
"cross-env": "^7.0.3",
"husky": "^7.0.4",
"lint-staged": "^12.3.3",
"modern-normalize": "^1.1.0",
"prettier": "^2.5.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"replace": "^1.2.1",
"stylelint": "^14.3.0"
},
"lint-staged": {
"*.{js,css,json,yml,yaml,md,html}": "prettier --write",
"*.css": "stylelint --fix"
},
"dependencies": {}
}