forked from tomaszbujnowicz/tailwindcss-minimal-setup
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 1.07 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": "tailwindcss-gulp-boilerplate",
"version": "1.0.0",
"description": "Setup Tailwind CSS with Gulp and Browser Sync",
"main": "tailwind.config.js",
"scripts": {
"dev": "tailwind-config-viewer & gulp",
"build": "NODE_ENV=production gulp css htmlTask",
"git": "git add . && git commit -m",
"deploy": "npm run build && npm run git",
"postgit": "git push --all",
"icons": "gulp svgUnicons"
},
"keywords": [],
"author": {
"name": "Andy Neale",
"email": "[email protected]",
"url": "https://www.purpledotstudio.com"
},
"dependencies": {
"@tailwindcss/aspect-ratio": "^0.2.0",
"@tailwindcss/forms": "^0.3.2",
"@tailwindcss/typography": "^0.2.0",
"gulp-svg-css": "^1.3.0",
"gulp-svgmin": "^3.0.0"
},
"devDependencies": {
"autoprefixer": "^10.2.5",
"browser-sync": "^2.26.14",
"gulp": "^4.0.2",
"gulp-concat": "^2.6.1",
"gulp-postcss": "^9.0.0",
"install": "^0.13.0",
"npm": "^7.12.1",
"postcss": "^8.2.1",
"tailwind-config-viewer": "^1.5.1",
"tailwindcss": "^2.0.2"
}
}