-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
103 lines (103 loc) · 3.39 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
91
92
93
94
95
96
97
98
99
100
101
102
103
{
"name": "frontend-garden-ghost-theme",
"description": "Frontend Garden Ghost theme",
"version": "6.8.1",
"license": "Apache-2.0",
"author": {
"name": "Adam Kudrna",
"email": "[email protected]",
"url": "https://www.adamkudrna.com"
},
"keywords": [
"ghost",
"theme",
"ghost-theme"
],
"homepage": "https://frontend.garden",
"bugs": {
"url": "https://github.com/frontend-garden/frontend-garden-ghost-theme/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/frontend-garden/frontend-garden-ghost-theme"
},
"engines": {
"ghost": ">=5.1.0",
"node": ">=18",
"npm": ">=10"
},
"scripts": {
"build": "concurrently \"npm run css\" \"npm run js\"",
"css": "npm run css:lint && npm run css:compile && npm run css:prefix && npm run css:minify",
"css:lint": "stylelint \"assets/scss/**/*.scss\" --cache --cache-location .cache/.stylelintcache",
"css:compile": "npm run css:compile:codepen && npm run css:compile:main",
"css:compile:codepen": "sass assets/scss/codepen.scss assets/built/css/codepen.css",
"css:compile:main": "sass assets/scss/main.scss assets/built/css/main.css",
"css:prefix": "postcss --config postcss.config.js --replace \"assets/built/css/*.css\" \"!assets/built/css/*.min.css\"",
"css:minify": "cleancss --format breaksWith=lf --source-map-inline-sources --output assets/built/css/main.min.css assets/built/css/main.css",
"js": "npm run js:lint",
"js:lint": "eslint *.js \"assets/js/**/*.js\"",
"markdown:lint": "markdownlint **/*.md --ignore .cache --ignore dist --ignore node_modules",
"gscan": "gscan .",
"predist": "npm test && npm run build && mkdirp ./dist",
"dist": "zip --recurse-paths -X ./dist/$npm_package_name-v$npm_package_version.zip . --exclude \"node_modules/*\" --include \"*.hbs\" \"package.json\" \"sw.js\" \"manifest.webmanifest\" \"assets/built/*\" \"assets/icons/*\" \"assets/js/*\" \"locales/*\" \"members\" \"partials/*\"",
"start": "npm run watch",
"test": "concurrently \"npm run gscan\" \"npm run markdown:lint\" \"npm run css:lint\" \"npm run js:lint\"",
"watch": "concurrently --kill-others \"npm run watch:css\" \"npm run watch:js\"",
"watch:css": "nodemon --watch assets/scss/ --ext scss --exec \"npm run css\"",
"watch:js": "nodemon --watch assets/js/ --ext js --exec \"npm run js\""
},
"dependencies": {
"modularscale-sass": "^3.0.10"
},
"devDependencies": {
"@visionappscz/stylelint-config": "^3.0.0",
"autoprefixer": "^10.4.19",
"clean-css-cli": "^5.6.3",
"concurrently": "^8.2.2",
"eslint": "^8.57.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.29.1",
"gscan": "^4.43.0",
"markdownlint-cli": "^0.39.0",
"mkdirp": "^3.0.1",
"postcss": "^8.4.38",
"postcss-cli": "^11.0.0",
"sass": "^1.75.0",
"stylelint": "^14.16.1"
},
"config": {
"card_assets": {
"exclude": [
"bookmark",
"button",
"callout",
"gallery"
]
},
"image_sizes": {
"avatar_small_2x": {
"width": 150
},
"avatar_medium_2x": {
"width": 220
},
"s": {
"width": 300
},
"m": {
"width": 600
},
"l": {
"width": 1000
},
"xl": {
"width": 2000
},
"xxl": {
"width": 4000
}
},
"posts_per_page": 24
}
}