-
-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathpackage.json
34 lines (34 loc) · 1.1 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
{
"name": "wt",
"version": "1.0.0",
"description": "wt",
"license": "None",
"repository": {
"type": "git",
"url": "https://github.com/michael-andreuzza/wickedblocks"
},
"main": "postcss.config.js",
"dependencies": {
"@tailwindcss/forms": "^0.2.1",
"@tailwindcss/typography": "^0.3.1",
"autoprefixer": "^10.1.0",
"lodash": "^4.17.19",
"postcss": "^8.2.1",
"postcss-cli": "^7.1.1",
"rainbow-code": "^2.1.7",
"rimraf": "^2.6.3",
"tailwindcss-border-gradients": "^2.0.3",
"tailwindcss-gradients": "^3.0.0"
},
"devDependencies": {
"@fullhuman/postcss-purgecss": "^1.2.0",
"cssnano": "^4.1.10",
"tailwindcss": "^2.0.2"
},
"scripts": {
"del:js": "rimraf tailwind.config.js",
"create:js": "./node_modules/.bin/tailwind init tailwind.config.js",
"dev:css": "./node_modules/.bin/tailwind build tailwind.config.css -c tailwind.config.js -o dist/css/tailwind.css",
"build:css": "postcss tailwind.config.css -o dist/css/tailwind.css"
}
}