-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
executable file
·39 lines (39 loc) · 1.09 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
{
"name": "themeplate",
"version": "3.1.1",
"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.7",
"@tailwindcss/typography": "^0.5.12",
"autoprefixer": "^10.4.19",
"browser-sync": "^3.0.2",
"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-sass": "^5.1.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.4.38",
"prettier": "^3.2.5",
"prettier-plugin-tailwindcss": "^0.5.13",
"sass": "^1.75.0",
"tailwind-bootstrap-grid": "^5.1.0",
"tailwindcss": "^3.4.3"
}
}