-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
41 lines (41 loc) · 1.22 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
35
36
37
38
39
40
41
{
"name": "k-ui-dashboard",
"version": "0.0.1",
"description": "Responsive dashboard built with tailwindcss & alpinejs",
"scripts": {
"serve": "cross-env NODE_ENV=development concurrently \"postcss src/tailwind.css -o public/assets/css/tailwind.css --watch\" \"live-server ./public\"",
"development": "cross-env NODE_ENV=development postcss src/tailwind.css -o public/assets/css/tailwind.css",
"production": "cross-env NODE_ENV=production postcss src/tailwind.css -o public/assets/css/tailwind.css",
"start": "npm run serve",
"playground": "live-server ./playground",
"deploy": "gh-pages -d public"
},
"keywords": [
"dashboard",
"tailwindcss",
"layout",
"alpinejs",
"admin",
"template"
],
"author": {
"name": "Kamona UI",
"email": "kamonaui@gmail.com",
"url": "https://github.com/kamona-ui"
},
"license": "MIT",
"dependencies": {
"gh-pages": "^3.1.0"
},
"devDependencies": {
"@tailwindcss/postcss7-compat": "^2.0.2",
"autoprefixer": "9",
"concurrently": "^5.3.0",
"cross-env": "^7.0.2",
"cssnano": "^4.1.10",
"live-server": "^1.2.1",
"postcss": "7",
"postcss-cli": "7",
"tailwindcss": "npm:@tailwindcss/postcss7-compat"
}
}