-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 922 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 922 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
30
31
32
33
34
35
36
{
"name": "create-tailwind-template",
"version": "3.0.1",
"description": "A HTML and TailwindCSS starter template with JIT mode as a postcss plugin.",
"main": "app.js",
"bin": "./bin/cli.js",
"scripts": {
"build": "postcss tailwind.css -o ./src/css/global.css -w --verbose",
"start": "node app.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/AmitDeka/create-tailwind-template.git"
},
"keywords": [
"npm",
"tailwind-css",
"nodemon",
"ejs"
],
"author": "Amit Deka",
"license": "MIT",
"bugs": {
"url": "https://github.com/AmitDeka/create-tailwind-template/issues"
},
"homepage": "https://github.com/AmitDeka/create-tailwind-template#readme",
"devDependencies": {
"autoprefixer": "^10.4.13",
"postcss": "^8.4.20",
"postcss-cli": "^9.1.0",
"tailwindcss": "^3.2.4"
},
"dependencies": {
"express": "^4.18.2"
}
}