-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
42 lines (42 loc) · 1.16 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": "windstrap",
"version": "0.0.4",
"description": "Tailwind CSS with Bootstrap JS",
"main": "index.js",
"author": "praveenjuge",
"license": "MIT",
"homepage": "https://windstrap.netlify.app/",
"keywords": [
"tailwind",
"tailwindcss",
"tailwindcss-plugin",
"css",
"components",
"bootstrap"
],
"repository": {
"type": "git",
"url": "git+https://github.com/praveenjuge/windstrap.git"
},
"bugs": {
"url": "https://github.com/praveenjuge/windstrap/issues"
},
"files": [
"src",
"index.js"
],
"scripts": {
"start": "cross-env NODE_ENV=development concurrently \"nodemon -e js,html,md --exec 'npm run tailwind'\" \"cd docs && hugo server --disableFastRender\"",
"production": "cross-env NODE_ENV=production npm run tailwind && cd docs && hugo --minify",
"tailwind": "npx tailwindcss-cli@latest build ./docs/static/tailwind.css -o ./docs/static/build.css --config ./docs/tailwind.config.js"
},
"devDependencies": {
"@tailwindcss/typography": "^0.3.1",
"concurrently": "^5.3.0",
"cross-env": "^7.0.3",
"nodemon": "^2.0.6"
},
"peerDependencies": {
"tailwindcss": "^2.0.2"
}
}