-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpackage.json
executable file
·35 lines (35 loc) · 1003 Bytes
/
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
{
"name": "themeplate",
"version": "4.0.0",
"description": "Gulp and Tailwindcss boilerplate for creating HTML templates",
"author": "Zeon Studio",
"license": "MIT",
"type": "module",
"scripts": {
"dev": "gulp dev",
"build": "gulp build",
"deploy": "gulp deploy",
"format": "prettier -w ./src",
"remove-darkmode": "node scripts/removeDarkmode.mjs && yarn format"
},
"devDependencies": {
"@tailwindcss/forms": "^0.5.10",
"@tailwindcss/postcss": "^4.0.6",
"@tailwindcss/typography": "^0.5.16",
"browser-sync": "^3.0.3",
"gulp": "^5.0.0",
"gulp-file-include": "^2.3.0",
"gulp-header-comment": "^0.10.0",
"gulp-jshint": "^2.1.0",
"gulp-postcss": "^10.0.0",
"gulp-rimraf": "^1.0.0",
"gulp-template": "^6.0.0",
"gulp-util": "^3.0.8",
"gulp-wrapper": "^1.0.0",
"jshint": "^2.13.6",
"jshint-stylish": "^2.2.1",
"postcss": "^8.5.2",
"prettier": "^3.5.0",
"prettier-plugin-tailwindcss": "^0.6.11"
}
}