-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
43 lines (43 loc) · 877 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
36
37
38
39
40
41
42
43
{
"name": "tailwind-starter",
"version": "1.0.0",
"description": "A starter kit to get going with tailwind, gulp and browser-sync.",
"main": "gulpfile.js",
"paths": {
"src": {
"css": "./src/css/"
},
"dist": {
"base": "./dist/",
"css": "./dist/css/"
},
"config": {
"tailwind": "./tailwind.js"
}
},
"devDependencies": {
"autoprefixer": "^8.4.1",
"browser-sync": "^2.18.13",
"gulp": "^3.9.1",
"gulp-postcss": "^7.0.0",
"tailwindcss": "^0.4.0"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "gulp serve",
"build": "gulp css"
},
"keywords": [
"tailwind",
"utility-first",
"CSS",
"boilerplate",
"gulp",
"browser-sync"
],
"author": "simonswiss",
"license": "ISC",
"dependencies": {
"gulp-purgecss": "^0.15.0"
}
}