-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 738 Bytes
/
package.json
File metadata and controls
29 lines (29 loc) · 738 Bytes
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
{
"name": "tailwind-html-postcss",
"version": "1.0.0",
"description": "Starter kit to use Tailwind and PostCSS with plain HTML files",
"private": true,
"scripts": {
"watch": "postcss src/styles.pcss -o src/styles.css -w",
"serve": "live-server src --host=0.0.0.0 --port=3000",
"dev": "npm-run-all --parallel watch serve"
},
"keywords": [
"tailwind",
"postcss",
"html",
"starter"
],
"author": "drubb",
"license": "MIT",
"devDependencies": {
"autoprefixer": "^10.3.7",
"live-server": "^1.2.1",
"npm-run-all": "^4.1.5",
"postcss": "^8.3.11",
"postcss-cli": "^8.3.1",
"postcss-import": "^14.0.2",
"postcss-preset-env": "^6.7.0",
"tailwindcss": "^2.2.17"
}
}