forked from TryGhost/Themes
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
73 lines (73 loc) · 2.15 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
{
"private": true,
"name": "root",
"workspaces": [
"packages/*"
],
"scripts": {
"dev": "gulp",
"lint": "gulp lint",
"symlink": "gulp symlink",
"test": "gulp test",
"test:ci": "gulp testCI",
"zip": "gulp zip",
"ship": "lerna publish --no-private"
},
"devDependencies": {
"autoprefixer": "10.4.14",
"beeper": "2.1.0",
"concurrently": "8.2.0",
"cssnano": "6.0.1",
"gscan": "4.37.0",
"gulp": "4.0.2",
"gulp-compile-handlebars": "0.6.1",
"gulp-concat": "2.6.1",
"gulp-livereload": "4.0.2",
"gulp-postcss": "9.0.1",
"gulp-stylelint": "13.0.0",
"gulp-uglify": "3.0.2",
"gulp-zip": "5.1.0",
"lerna": "7.0.2",
"postcss": "8.4.24",
"postcss-easy-import": "4.0.0",
"pump": "3.0.0",
"stylelint": "15.8.0",
"stylelint-config-recess-order": "4.0.0",
"stylelint-config-standard": "33.0.0",
"yargs": "17.7.2"
},
"browserslist": [
"defaults"
],
"stylelint": {
"extends": [
"stylelint-config-standard",
"stylelint-config-recess-order"
],
"rules": {
"indentation": 4,
"no-descending-specificity": null,
"alpha-value-notation": null,
"selector-class-pattern": null,
"max-line-length": null,
"value-no-vendor-prefix": null,
"color-function-notation": null,
"property-no-vendor-prefix": null,
"media-feature-name-no-vendor-prefix": null,
"number-max-precision": null,
"value-keyword-case": null,
"keyframes-name-pattern": null,
"selector-not-notation": null,
"keyframe-block-no-duplicate-selectors": null,
"import-notation": null,
"keyframe-selector-notation": null,
"declaration-block-no-redundant-longhand-properties": null,
"media-feature-range-notation": "prefix"
}
},
"renovate": {
"extends": [
"@tryghost:theme"
]
}
}