keycloak_theme/package.json

90 lines
2.8 KiB
JSON
Raw Normal View History

2021-02-20 11:51:44 +01:00
{
2021-03-05 20:43:22 +01:00
"name": "keycloakify",
2022-08-20 14:56:40 +07:00
"version": "6.0.0-beta.5",
2021-02-23 13:11:56 +01:00
"description": "Keycloak theme generator for Reacts app",
2021-02-20 11:51:44 +01:00
"repository": {
"type": "git",
2021-03-05 20:43:22 +01:00
"url": "git://github.com/garronej/keycloakify.git"
2021-02-20 11:51:44 +01:00
},
2021-02-21 21:16:43 +01:00
"main": "dist/lib/index.js",
"types": "dist/lib/index.d.ts",
2021-02-20 11:51:44 +01:00
"scripts": {
"build": "rimraf dist/ && tsc -p src/bin && tsc -p src/lib && yarn grant-exec-perms && yarn copy-files dist/",
"build:test": "rimraf dist_test/ && tsc -p src/test && yarn copy-files dist_test/",
2021-02-28 18:40:57 +01:00
"grant-exec-perms": "node dist/bin/tools/grant-exec-perms.js",
"copy-files": "copyfiles -u 1 src/**/*.ftl",
"test": "yarn build:test && node dist_test/test/bin && node dist_test/test/lib",
"generate-messages": "node dist/bin/generate-i18n-messages.js",
"link_in_test_app": "node dist/bin/link_in_test_app.js",
"_format": "prettier '**/*.{ts,tsx,json,md}'",
"format": "yarn _format --write",
"format:check": "yarn _format --list-different"
2021-02-20 11:51:44 +01:00
},
2021-02-21 21:16:43 +01:00
"bin": {
"keycloakify": "dist/bin/keycloakify/index.js",
"create-keycloak-email-directory": "dist/bin/create-keycloak-email-directory.js",
"download-builtin-keycloak-theme": "dist/bin/download-builtin-keycloak-theme.js"
2021-02-21 21:16:43 +01:00
},
"lint-staged": {
"*.{ts,tsx,json,md}": [
"prettier --write"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged -v"
}
},
2021-02-20 10:53:26 +00:00
"author": "u/garronej",
2021-02-20 11:51:44 +01:00
"license": "MIT",
"files": [
"src/",
"dist/",
2021-02-27 02:22:45 +01:00
"!dist/tsconfig.tsbuildinfo"
2021-02-20 11:51:44 +01:00
],
2021-02-21 21:16:43 +01:00
"keywords": [
2021-07-25 19:32:25 +02:00
"bluehats",
2021-02-21 21:16:43 +01:00
"keycloak",
"react",
2021-02-28 18:40:57 +01:00
"theme",
"FreeMarker",
"ftl",
"login",
"register"
2021-02-21 21:16:43 +01:00
],
2021-03-05 20:43:22 +01:00
"homepage": "https://github.com/garronej/keycloakify",
2021-10-16 15:17:47 +02:00
"peerDependencies": {
"@emotion/react": "^11.4.1",
2022-06-01 05:38:12 +02:00
"react": "^16.8.0 || ^17.0.0 || ^18.0.0"
2021-10-16 15:17:47 +02:00
},
2021-02-20 11:51:44 +01:00
"devDependencies": {
2021-10-16 15:17:47 +02:00
"@emotion/react": "^11.4.1",
2022-04-27 21:02:10 +02:00
"@types/memoizee": "^0.4.7",
2022-04-20 00:39:40 +02:00
"@types/node": "^17.0.25",
2022-06-28 23:36:16 +02:00
"@types/react": "18.0.9",
2021-02-22 00:20:10 +01:00
"copyfiles": "^2.4.1",
"husky": "^4.3.8",
"lint-staged": "^11.0.0",
"prettier": "^2.3.0",
2021-02-28 18:40:57 +01:00
"properties-parser": "^0.3.1",
2022-06-28 23:36:16 +02:00
"react": "18.1.0",
2021-02-27 02:31:47 +01:00
"rimraf": "^3.0.2",
2022-08-01 03:23:49 +02:00
"typescript": "^4.2.3"
2021-02-21 17:38:59 +01:00
},
"dependencies": {
2022-04-20 00:39:40 +02:00
"@octokit/rest": "^18.12.0",
2021-02-23 15:32:37 +01:00
"cheerio": "^1.0.0-rc.5",
2022-04-20 00:39:40 +02:00
"cli-select": "^1.1.2",
2022-07-28 03:01:11 +00:00
"evt": "^2.3.1",
2022-04-27 21:02:10 +02:00
"memoizee": "^0.4.15",
2021-07-16 19:05:56 +02:00
"minimal-polyfills": "^2.2.1",
"path-browserify": "^1.0.1",
2022-07-28 03:01:11 +00:00
"powerhooks": "^0.20.10",
2021-04-09 03:25:39 +02:00
"react-markdown": "^5.0.3",
2021-03-07 01:47:03 +01:00
"scripting-tools": "^0.19.13",
2022-07-28 03:01:11 +00:00
"tsafe": "^0.10.1",
2022-08-16 14:41:06 +07:00
"tss-react": "^3.7.1",
"zod": "^3.17.10"
2021-02-20 11:51:44 +01:00
}
2021-02-21 23:12:55 +01:00
}