-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1.03 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
{
"name": "TW",
"description": "Презентация «TailwindCSS: Попутный ветер перемен»",
"version": "1.0.0",
"private": true,
"scripts": {
"tw-watch": "tailwindcss -i ./themes/tw/styles/main.css -o ./bundled/main.css --watch",
"tw-build": "tailwindcss -i ./themes/tw/styles/main.css -o ./bundled/main.css --minify",
"watch": "shower serve & npm run tw-watch",
"build": "npm run tw-build",
"pdf": "shower pdf"
},
"files": [
"pictures/**",
"index.html",
"README.md"
],
"dependencies": {
"@shower/core": "^3.3.0",
"@shower/material": "^2.5.1",
"@shower/ribbon": "^3.5.1"
},
"devDependencies": {
"@shower/cli": "^0.3.1",
"autoprefixer": "^10.4.18",
"path-exists-cli": "^2.0.0",
"postcss": "^8.4.37",
"prettier": "^3.2.5",
"prettier-plugin-tailwindcss": "^0.5.12",
"sd-tailwindcss-transformer": "^1.4.1",
"tailwindcss": "^3.4.1"
},
"browserslist": [
"last 2 version",
"not dead"
],
"engines": {
"node": "20"
}
}