generated from TryGhost/Starter
-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
78 lines (78 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
{
"name": "rubycentral-theme",
"version": "1.0.2",
"description": "A Ghost theme for Ruby Central",
"engines": {
"ghost": ">=4.0.0"
},
"main": "'src/index.js'",
"scripts": {
"reload": "node utils/reload",
"dev": "npm run reload & npm run watch",
"watch": "NODE_ENV=development rollup -c -w",
"build": "NODE_ENV=production rollup -c",
"zip": "npm run build && node utils/zip",
"check": "gscan .",
"css": "npx stylelint 'src/css/**/*.css' --fix"
},
"keywords": [
"ghost-theme"
],
"author": {
"name": "Ruby Central",
"email": "[email protected]",
"url": "https://rubycentral.org"
},
"license": "private",
"config": {
"card_assets": true,
"posts_per_page": 15,
"image_sizes": {
"xxs": {
"width": 50
},
"xs": {
"width": 100
},
"s": {
"width": 300
},
"m": {
"width": 500
},
"l": {
"width": 700
},
"xl": {
"width": 1000
},
"xxl": {
"width": 2000
}
}
},
"devDependencies": {
"@babel/core": "7.18.10",
"@babel/preset-env": "7.18.10",
"@rollup/plugin-babel": "5.3.1",
"@rollup/plugin-commonjs": "22.0.1",
"@rollup/plugin-node-resolve": "13.3.0",
"adm-zip": "0.5.9",
"cssnano": "5.1.12",
"eslint": "8.21.0",
"eslint-config-airbnb-base": "15.0.0",
"eslint-plugin-import": "2.26.0",
"gscan": "^4.36.0",
"livereload": "0.9.3",
"postcss": "8.4.14",
"postcss-import": "14.1.0",
"postcss-preset-env": "7.7.2",
"rollup": "2.77.2",
"rollup-plugin-postcss": "4.0.2",
"rollup-plugin-replace": "2.2.0",
"rollup-plugin-terser": "7.0.2",
"stylelint": "14.9.1",
"stylelint-order": "5.0.0",
"tocbot": "^4.25.0"
}
}