forked from TryGhost/Themes
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.29 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
{
"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"
},
"devDependencies": {
"autoprefixer": "10.3.7",
"beeper": "2.1.0",
"concurrently": "6.3.0",
"cssnano": "5.0.8",
"gscan": "4.9.0",
"gulp": "4.0.2",
"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",
"postcss": "8.3.11",
"postcss-easy-import": "3.0.0",
"pump": "3.0.0",
"stylelint": "13.13.1",
"stylelint-config-recess-order": "2.5.0",
"stylelint-config-standard": "22.0.0",
"yargs": "17.2.1"
},
"browserslist": [
"defaults"
],
"stylelint": {
"extends": [
"stylelint-config-standard",
"stylelint-config-recess-order"
],
"rules": {
"indentation": 4,
"no-descending-specificity": null
}
},
"renovate": {
"extends": [
"@tryghost:theme"
]
}
}