forked from TryGhost/Source
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.82 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
{
"name": "dsebastien",
"description": "dSebastien.net Ghost Theme",
"version": "1.0.0",
"license": "",
"scripts": {
"tailwind": "rm -rf ./src/assets/built && npx @tailwindcss/cli --input ./src/assets/css/screen.css --output ./src/assets/built/screen.css",
"dev": "npx concurrently \"cd src && npx gulp\" \"npm run tailwind -- --watch\"",
"serve": "npx concurrently \"docker-compose up\" \"npm run dev\"",
"zip": "rm -rf ./dist &&npm run tailwind -- --minify && cd src && npx gulp zip",
"test": "cd src && npx gscan .",
"test:ci": "cd src && npx gscan --fatal --verbose .",
"pretest": "npm run tailwind && cd src && npx gulp build"
},
"author": {
"name": "Sébastien Dubois",
"email": "[email protected]",
"url": "https://dsebastien.net"
},
"keywords": [
"ghost",
"theme",
"ghost-theme"
],
"repository": {
"type": "git",
"url": "https://github.com/dsebastien/ghost-theme-dsebastien.git"
},
"bugs": "https://github.com/dsebastien/ghost-theme-dsebastien/issues",
"contributors": "https://github.com/dsebastien/ghost-theme-dsebastien/graphs/contributors",
"devDependencies": {
"@tailwindcss/cli": "^4.0.0-beta.6",
"@tailwindcss/typography": "0.5.15",
"@tryghost/release-utils": "0.8.1",
"beeper": "2.1.0",
"concurrently": "9.1.0",
"gscan": "4.46.0",
"gulp": "4.0.2",
"gulp-concat": "2.6.1",
"gulp-livereload": "4.0.2",
"gulp-uglify": "3.0.2",
"gulp-zip": "5.1.0",
"pump": "3.0.0",
"tailwindcss": "^4.0.0-beta.6"
},
"browserslist": [
"defaults"
],
"renovate": {
"extends": [
"@tryghost:theme"
]
},
"dependencies": {
}
}