-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
33 lines (33 loc) · 948 Bytes
/
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
{
"name": "atom-html",
"version": "2.0.0",
"author": "Red Pixel Themes",
"private": true,
"scripts": {
"css": "postcss assets/styles/main.css -o assets/styles/main.min.css --verbose",
"server-reload": "browser-sync start --config './browser-sync-config.js'",
"develop": "concurrently 'npm:css -- --watch' 'npm:server-reload'",
"build": "npm run css -- --env 'production'",
"format": "npx prettier ./**/*.html"
},
"browserslist": [
"last 2 versions",
"> 1%"
],
"dependencies": {
"@tailwindcss/aspect-ratio": "^0.4.0",
"@tailwindcss/forms": "^0.4.0",
"@tailwindcss/typography": "^0.5.2",
"browser-sync": "^2.27.7",
"concurrently": "^7.0.0",
"cssnano": "^5.0.17",
"postcss-cli": "^9.1.0"
},
"devDependencies": {
"autoprefixer": "^10.4.2",
"postcss": "^8.4.7",
"prettier": "^2.5.1",
"prettier-plugin-tailwindcss": "^0.1.8",
"tailwindcss": "^3.0.23"
}
}