-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
46 lines (46 loc) · 1.52 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
{
"name": "xt-tailwindcss-starter",
"version": "5.0.0",
"description": "A Tailwind CSS Starter. Based on Tailwind CSS CLI v3. Fully optimized for top performance.",
"scripts": {
"dev-cli": "npx tailwindcss -i ./src/styles.css -o ./dist/main.css --watch",
"dev": "cross-env NODE_ENV=development webpack-dev-server",
"serve": "cross-env NODE_ENV=development webpack-dev-server",
"dev-build": "cross-env NODE_ENV=development webpack",
"prod": "cross-env NODE_ENV=production webpack",
"update-browserslist": "npx browserslist@latest --update-db"
},
"repository": {
"type": "git",
"url": "[email protected]:anibalsanchez/XT-TailwindCSS-Starter.git"
},
"keywords": [
"Tailwind, CSS, CLI, PostCSS, Webpack, tailwindcss, starter"
],
"author": "Extly CB",
"license": "MIT",
"devDependencies": {
"browser-sync-webpack-plugin": "^2.3.0",
"copy-webpack-plugin": "^10.2.0",
"cross-env": "^7.0.3",
"css-loader": "^6.5.1",
"html-webpack-plugin": "^5.5.0",
"mini-css-extract-plugin": "^2.4.6",
"postcss-loader": "^6.2.1",
"webpack": "^5.66.0",
"webpack-cli": "^4.9.1",
"webpack-dev-server": "^4.7.3"
},
"dependencies": {
"@tailwindcss/aspect-ratio": "^0.4.0",
"@tailwindcss/forms": "^0.4.0",
"@tailwindcss/line-clamp": "^0.3.1",
"@tailwindcss/typography": "^0.5.0",
"autoprefixer": "^10.4.2",
"cssnano": "^5.0.15",
"cssnano-preset-advanced": "^5.1.10",
"postcss": "^8.4.5",
"postcss-import": "^14.0.2",
"tailwindcss": "^3.0.13"
}
}