-
Notifications
You must be signed in to change notification settings - Fork 126
/
package.json
48 lines (48 loc) · 1.63 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
43
44
45
46
47
48
{
"name": "@themesberg/windster-tailwind-css-dashboard",
"version": "1.1.0",
"description": "Free and open source Tailwind CSS admin dashboard template",
"license": "https://themesberg.com/licensing",
"style": "dist/flowbite.css",
"main": "static/js/app.bundle.js",
"homepage": "https://themesberg.com/product/tailwind-css/dashboard-windster",
"contributors": [
"Zoltán Szőgyényi <[email protected]>",
"Robert Tanislav <[email protected]>",
"Victor Cordoș <[email protected]>"
],
"scripts": {
"start": "run-p start:dev:*",
"start:dev:hugo": "hugo server -D --watch",
"start:dev:webpack": "webpack --mode=development --watch",
"build": "NODE_ENV=production && run-s build:webpack build:hugo",
"build:hugo": "hugo --destination=./.build",
"build:webpack": "webpack --mode=production",
"build:styles": "npx tailwindcss -i ./src/style.css -o ./dist/css/flowbite.css",
"deploy": "wrangler publish",
"release": "node ./prepare-release.js"
},
"devDependencies": {
"autoprefixer": "^10.3.7",
"css-loader": "^6.4.0",
"css-minimizer-webpack-plugin": "^3.1.1",
"mini-css-extract-plugin": "^2.4.2",
"npm-run-all": "^4.1.5",
"postcss": "^8.3.9",
"postcss-loader": "^6.2.0",
"postcss-preset-env": "^6.7.0",
"source-map-loader": "^3.0.0",
"style-loader": "^3.3.0",
"tailwindcss": "^3.0.18",
"webpack": "^5.58.2",
"webpack-cli": "^4.9.0",
"webpack-dev-server": "^4.3.1",
"yarn": "^1.22.17"
},
"dependencies": {
"@popperjs/core": "^2.10.2",
"apexcharts": "^3.29.0",
"flowbite": "^1.6.2",
"prismjs": "^1.25.0"
}
}