-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
28 lines (28 loc) · 1.04 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
{
"devDependencies": {
"@symfony/webpack-encore": "^1.3.0",
"alpinejs": "^2.8.2",
"autoprefixer": "^10.2.5",
"browserslist": "^4.16.6",
"cpx": "^1.5.0",
"glob-all": "^3.2.1",
"node-sass": "^6.0.0",
"path": "^0.12.7",
"postcss": "^8.3.9",
"postcss-import": "^14.0.2",
"postcss-loader": "^5.3.0",
"purgecss-webpack-plugin": "^4.0.3",
"sass-loader": "^11.1.1",
"tailwindcss": "^2.2"
},
"license": "MIT",
"scripts": {
"build:jit": "NODE_ENV=development TAILWIND_MODE=watch encore dev --config-name jitConfig --watch",
"build:jit:copy": "yarn run build:jit && yarn run copy",
"build:dev": "encore dev --config-name defaultConfig",
"build:prod": "encore production --config-name defaultConfig",
"copy": "cpx \"src/Resources/public/tailwindcss/**/*.{css,js,json}\" \"../../../public/bundles/tailwind/tailwindcss\" --watch --clean --verbose",
"watch:dev": "encore dev --config-name defaultConfig --watch",
"watch:prod": "encore production --config-name defaultConfig --watch"
}
}