-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpackage.json
46 lines (46 loc) · 1.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
{
"name": "static-starter",
"description": "Static HTML/CSS/JS Template Build System",
"main": "gulpfile.js",
"author": "Roy Barber",
"engines": {
"node": "> 14.15.5"
},
"scripts": {
"dev": "ENV NODE_ENV=development gulp",
"build": "ENV NODE_ENV=production gulp build --production",
"netlify": "gulp build --production",
"buildserve": "ENV NODE_ENV=production gulp buildserve --production"
},
"dependencies": {
"@babel/core": "^7.15.5",
"@babel/preset-env": "^7.15.6",
"@babel/register": "^7.15.3",
"@tailwindcss/forms": "^0.4.0",
"@tailwindcss/typography": "^0.5.0",
"ansi-colors": "^4.1.1",
"autoprefixer": "^10.4.0",
"babel-loader": "^8.2.2",
"browser-sync": "^2.27.5",
"cssnano": "^5.0.14",
"del": "^6.0.0",
"favicons": "^6.2.2",
"gulp": "^4.0.2",
"gulp-beautify": "^3.0.0",
"gulp-changed": "^4.0.3",
"gulp-hb": "^8.0.0",
"gulp-plumber": "^1.2.1",
"gulp-postcss": "^9.0.1",
"gulp-svg-sprite": "^1.5.0",
"handlebars-layouts": "^3.1.4",
"postcss": "^8.4.5",
"tailwindcss": "^3.0.7",
"webpack": "^5.53.0",
"webpack-stream": "^7.0.0",
"yargs": "^17.1.1"
},
"browserslist": [
"defaults",
"not IE 11"
]
}