-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 1023 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 1023 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
{
"name": "tailwind-starter",
"version": "0.0.1",
"description": "Tailwind starter",
"main": "index.js",
"scripts": {
"tailwind:watch": "tailwindcss -i src/styles.css -o public/styles.css --watch",
"build": "tailwindcss build -i src/styles.css -o public/styles.css",
"build:production": "NODE_ENV=production tailwindcss build -i src/styles.css -o public/styles.css --minify",
"test": "echo \"Error: no test specified\" && exit 1",
"serve": "npm run tailwind:watch & node index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tailrocks/tailwind-starter.git"
},
"author": "donbeave",
"license": "ISC",
"bugs": {
"url": "https://github.com/tailrocks/tailwind-starter/issues"
},
"homepage": "https://github.com/tailrocks/tailwind-starter#readme",
"dependencies": {
"autoprefixer": "^10.3.1",
"eta": "^1.12.3",
"express": "^4.17.1",
"postcss": "^8.3.5",
"tailwindcss": "^3.0.0",
"tailwindcss-debug-screens": "^2.0.0"
}
}