Ocelot-Social/package.json
2023-11-15 12:11:26 +01:00

83 lines
2.4 KiB
JSON

{
"name": "boilerplate-frontend",
"version": "1.0.0",
"description": "The IT4C Boilerplate for frontends",
"main": "build/index.js",
"type": "module",
"repository": {
"type": "git",
"url": "git+https://github.com/IT4Change/boilerplate-frontend.git"
},
"keywords": [
"npm",
"nodejs",
"vite",
"vike",
"vue",
"vuetify",
"pinia",
"storybook",
"eslint"
],
"author": "Ulf Gebhardt",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/IT4Change/boilerplate-frontend/issues"
},
"homepage": "https://github.com/IT4Change/boilerplate-frontend#readme",
"scripts": {
"dev": "npm run server:dev",
"prod": "npm run build && npm run server:prod",
"build": "vite build",
"server": "node --loader ts-node/esm ./server/index.ts",
"server:dev": "npm run server",
"server:prod": "cross-env NODE_ENV=production npm run server",
"storybook": "cross-env STORYBOOK=true storybook dev -p 6006",
"build-storybook": "cross-env STORYBOOK=true && storybook build",
"lint": "eslint --ignore-path .gitignore .",
"test": "npm run lint"
},
"dependencies": {
"@mdi/font": "^7.3.67",
"@types/compression": "^1.7.2",
"@types/express": "^4.17.17",
"@types/node": "^20.4.10",
"@vitejs/plugin-vue": "^4.2.3",
"@vue/compiler-sfc": "^3.3.4",
"@vue/server-renderer": "^3.3.4",
"compression": "^1.7.4",
"cross-env": "^7.0.3",
"express": "^4.18.2",
"pinia": "^2.1.7",
"sass": "^1.69.5",
"sass-loader": "^13.3.2",
"sirv": "^2.0.3",
"ts-node": "^10.9.1",
"typescript": "^5.1.6",
"vike": "^0.4.145",
"vite": "^4.4.9",
"vue": "^3.3.4",
"vuetify": "^3.4.0"
},
"devDependencies": {
"@storybook/addon-essentials": "^7.5.3",
"@storybook/addon-interactions": "^7.5.3",
"@storybook/addon-links": "^7.5.3",
"@storybook/blocks": "^7.5.3",
"@storybook/testing-library": "^0.2.2",
"@storybook/vue3": "^7.5.3",
"@storybook/vue3-vite": "^7.5.3",
"@typescript-eslint/eslint-plugin": "^6.11.0",
"@typescript-eslint/parser": "^6.11.0",
"eslint": "^8.53.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-prettier": "^5.0.1",
"eslint-plugin-vue": "^9.18.1",
"eslint-plugin-vuetify": "^2.1.0",
"prettier": "^3.1.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"storybook": "^7.5.3"
}
}