-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathpackage.json
39 lines (39 loc) · 1.2 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
{
"name": "@trigo/keycloak-theme-development",
"version": "1.0.0",
"description": "An example development environment setup to build Keycloak themes",
"scripts": {
"build:tailwind-example:dev": "tailwindcss -i ./styles/styles.css -o ./themes/tailwind-example/resources/css/styles.css --watch",
"build:tailwind-example": "NODE_ENV=production tailwindcss -i ./styles/styles.css -o ./themes/tailwind-example/resources/css/styles.css --minify",
"prettify": "prettier --write '**/*.{js,jsx}'",
"prepare": "husky install"
},
"repository": {
"type": "git",
"url": "git+https://github.com/trigo-at/keycloak-theme-development.git"
},
"keywords": [
"trigo",
"keycloak",
"development",
"themes"
],
"author": "David Wippel <david@trigodev.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/trigo-at/keycloak-theme-development/issues"
},
"homepage": "https://github.com/trigo-at/keycloak-theme-development#readme",
"lint-staged": {
"*.{js,jsx}": [
"prettier --write"
]
},
"devDependencies": {
"@tailwindcss/forms": "^0.5.0",
"husky": "^7.0.4",
"lint-staged": "^12.3.7",
"prettier": "^2.6.2",
"tailwindcss": "^3.0.23"
}
}