-
Notifications
You must be signed in to change notification settings - Fork 190
/
package.json
42 lines (42 loc) · 1.05 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
42
{
"name": "kwd-dashboard",
"version": "0.0.1",
"description": "Responsive dashboard built with tailwindcss alpinejs",
"scripts": {
"serve": "run-p css:watch html:serve",
"prod": "run-s css:build",
"css:watch": "tailwindcss -i src/tailwind.css -o public/build/css/tailwind.css -w",
"css:build": "tailwindcss -i src/tailwind.css -o public/build/css/tailwind.css -m",
"html:serve": "live-server ./public",
"predeploy": "run-s css:build",
"deploy": "gh-pages -d public"
},
"keywords": [
"dashboard",
"tailwindcss",
"layout",
"alpinejs",
"admin",
"template"
],
"author": {
"name": "Ahmed Kamel",
"email": "ak3849909@gmail.com",
"url": "https://github.com/Kamona-WD"
},
"license": "MIT",
"dependencies": {},
"devDependencies": {
"autoprefixer": "^10.3.1",
"gh-pages": "^3.2.3",
"live-server": "^1.2.1",
"npm-run-all": "^4.1.5",
"postcss": "^8.3.6",
"tailwindcss": "^2.2.7"
},
"prettier": {
"semi": false,
"singleQuote": true,
"printWidth": 120
}
}