This repository was archived by the owner on Jun 4, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
111 lines (111 loc) · 2.88 KB
/
package.json
File metadata and controls
111 lines (111 loc) · 2.88 KB
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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
{
"name": "Tailwind",
"version": "1.0.0",
"description": "",
"main": "gulpfile.js",
"env": {
"local": ""
},
"paths": {
"dependencies": "node_modules/",
"public": "web/",
"templates": "templates/",
"dist": {
"base": "dist/",
"css": "dist/css/",
"js": "dist/js/",
"images": "dist/images/",
"favicon": "dist/images/favicon/"
},
"assets": {
"scss": "assets/scss/",
"js": "assets/js/",
"images": "assets/images/",
"fonts": "assets/fonts/"
}
},
"files": {
"tailwind": "./tailwind.config.js",
"dist": {
"css": "app.css",
"js": "app.js"
},
"assets": {
"scss": "app.scss",
"js": "app.js"
}
},
"critical": {
"url": "http://tailwind-css.local/",
"elements": [
{
"uri": "",
"slug": "",
"path": ""
}
]
},
"purgeCss": {
"whitelistPatterns": [
"is-.*",
"aos.*",
"choices.*",
"flickity.*",
"mfp.*"
]
},
"cssDependencies": [],
"jsDependencies": [
"fg-loadcss/dist/cssrelpreload.js",
"alpinejs/dist/alpine.js"
],
"dependencies": {
"alpinejs": "^2.3.5",
"fg-loadcss": "^2.1.0",
"tailwindcss": "^1.4.6",
"tailwindcss-animations": "^2.0.0",
"tailwindcss-aspect-ratio": "^2.0.0",
"tailwindcss-typography": "^3.1.0"
},
"devDependencies": {
"autoprefixer": "^9.8.0",
"browser-sync": "^2.26.7",
"critical": "^1.3.9",
"cssnano": "^4.1.10",
"del": "^4.1.1",
"favicons": "^5.5.0",
"gulp": "^4.0.2",
"gulp-concat": "^2.6.1",
"gulp-dest-clean": "^0.5.0",
"gulp-imagemin": "^5.0.3",
"gulp-minify": "^3.1.0",
"gulp-modernizr": "^3.4.1",
"gulp-newer": "^1.4.0",
"gulp-notify": "^3.2.0",
"gulp-plumber": "^1.2.1",
"gulp-postcss": "^8.0.0",
"gulp-purgecss": "^1.2.0",
"gulp-rev": "^9.0.0",
"gulp-sass": "^4.1.0",
"gulp-sass-glob": "^1.1.0",
"gulp-sourcemaps": "^2.6.5",
"node-sass": "^4.14.1",
"purgecss": "^1.4.2",
"rev-del": "^2.0.0"
},
"scripts": {
"dev": "gulp dev",
"production": "gulp production"
},
"repository": {
"type": "git",
"url": "git+https://github.com/madebyshape/tailwind-css.git"
},
"author": "Jason Mayo (@bymayo)",
"authorUrl": "https://madebyshape.co.uk",
"license": "ISC",
"bugs": {
"url": "https://github.com/madebyshape/tailwind-css/issues"
},
"homepage": "https://github.com/madebyshape/tailwind-css#readme"
}