kiosk/package.json

91 lines
2.3 KiB
JSON
Raw Normal View History

2023-04-19 08:05:22 +00:00
{
"name": "@lfk/kiosk",
2023-04-19 16:27:56 +00:00
"version": "1.0.0",
2023-04-19 08:05:22 +00:00
"private": false,
2023-04-19 09:57:36 +00:00
"license": "MIT",
"repository": "https://git.odit.services/lfk/kiosk",
"author": {
"name": "ODIT.Services",
"email": "info@odit.services",
"url": "https://odit.services"
},
"contributors": [
{
"name": "Philipp Dormann",
"email": "philipp@philippdormann.de",
"url": "https://philippdormann.de"
},
{
"name": "Nicolai Ort",
"email": "info@nicolai-ort.com",
"url": "https://nicolai-ort.com"
}
],
2023-04-19 08:05:22 +00:00
"scripts": {
"dev": "vite dev",
"build": "vite build",
"preview": "vite preview",
"check": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json",
"check:watch": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json --watch",
"lint": "prettier --plugin-search-dir . --check . && eslint .",
2023-04-19 08:07:54 +00:00
"format": "prettier --plugin-search-dir . --write .",
2023-04-19 08:11:37 +00:00
"release": "release-it",
"license:export": "license-exporter --markdown && git stage licenses.md"
2023-04-19 08:05:22 +00:00
},
"devDependencies": {
2023-04-19 08:14:00 +00:00
"@odit/license-exporter": "0.0.12",
"@sveltejs/adapter-static": "2.0.2",
2023-04-19 10:33:27 +00:00
"@sveltejs/kit": "1.15.7",
2023-04-19 10:05:19 +00:00
"@types/bwip-js": "^3.2.0",
2023-04-19 10:33:27 +00:00
"@typescript-eslint/eslint-plugin": "5.59.0",
"@typescript-eslint/parser": "5.59.0",
2023-04-19 08:14:00 +00:00
"auto-changelog": "2.4.0",
2023-04-19 10:33:27 +00:00
"autoprefixer": "10.4.14",
"eslint": "8.38.0",
"eslint-config-prettier": "8.8.0",
2023-04-19 08:14:00 +00:00
"eslint-plugin-svelte3": "4.0.0",
2023-04-19 10:33:27 +00:00
"postcss": "8.4.22",
2023-04-19 08:14:00 +00:00
"postcss-load-config": "4.0.1",
2023-04-19 10:33:27 +00:00
"prettier": "2.8.7",
"prettier-plugin-svelte": "2.10.0",
2023-04-19 08:14:00 +00:00
"release-it": "15.10.1",
2023-04-19 10:33:27 +00:00
"svelte": "3.58.0",
"svelte-check": "3.2.0",
"svelte-preprocess": "5.0.3",
"tailwindcss": "3.3.1",
"tslib": "2.5.0",
2023-04-19 08:18:56 +00:00
"typescript": "5.0.4",
2023-04-19 10:33:27 +00:00
"vite": "4.2.2"
2023-04-19 08:05:22 +00:00
},
"type": "module",
"dependencies": {
2023-04-19 10:33:07 +00:00
"@fontsource/athiti": "^4.5.10",
2023-04-19 09:57:47 +00:00
"@odit/lfk-client-js": "1.0.1",
2023-04-19 08:14:00 +00:00
"bwip-js": "3.4.0"
2023-04-19 08:07:54 +00:00
},
"release-it": {
"git": {
"commit": true,
"requireCleanWorkingDir": false,
"commitMessage": "🚀Bumped version to ${version}",
2023-04-19 10:08:07 +00:00
"requireBranch": "main",
2023-04-19 08:07:54 +00:00
"push": true,
"tag": true,
"tagName": null,
"tagAnnotation": "${version}"
},
"npm": {
"publish": false
},
"hooks": {
2023-04-19 10:10:31 +00:00
"after:bump": "npx auto-changelog --commit-limit false -p -u --hide-credit && npm run license:export && git add CHANGELOG.md && git add licenses.md"
2023-04-19 08:07:54 +00:00
}
},
"volta": {
"node": "19.9.0"
},
"engines": {
"pnpm": "8"
2023-04-19 08:05:22 +00:00
}
2023-04-19 10:10:42 +00:00
}