mirror of
https://github.com/ThisIsBenny/wishlist-app.git
synced 2025-04-19 23:37:41 +00:00
56 lines
1.8 KiB
JSON
56 lines
1.8 KiB
JSON
{
|
|
"version": "0.1.0",
|
|
"scripts": {
|
|
"dev": "concurrently --kill-others \"npm run dev:frontend\" \"npm run dev:backend\"",
|
|
"dev:frontend": "vite",
|
|
"dev:backend": "nodemon -r dotenv/config ./src/api/server.ts",
|
|
"build": "npm run build:frontend && npm run build:backend",
|
|
"build:frontend": "vue-tsc --noEmit && vite build",
|
|
"build:backend": "tsc -p tsconfig.backend.json --outDir dist",
|
|
"preview": "vite preview --port 5050",
|
|
"test:unit": "vitest --environment jsdom",
|
|
"test:unit:ci": "vitest --environment jsdom --run",
|
|
"typecheck": "vue-tsc --noEmit",
|
|
"lint": "eslint . --ext .vue,.js,.jsx,.cjs,.mjs,.ts,.tsx,.cts,.mts --fix --ignore-path .gitignore"
|
|
},
|
|
"prisma": {
|
|
"seed": "ts-node prisma/seed.ts"
|
|
},
|
|
"dependencies": {
|
|
"@prisma/client": "^3.8.1",
|
|
"axios": "^0.25.0",
|
|
"fastify": "^3.27.0",
|
|
"fastify-compress": "^4.0.1",
|
|
"fastify-cors": "^6.0.2",
|
|
"fastify-helmet": "^7.0.1",
|
|
"fastify-static": "^4.5.0",
|
|
"vue": "^3.2.27",
|
|
"vue-router": "^4.0.12"
|
|
},
|
|
"devDependencies": {
|
|
"@rushstack/eslint-patch": "^1.1.0",
|
|
"@types/node": "^16.11.21",
|
|
"@vitejs/plugin-vue": "^2.0.1",
|
|
"@vue/eslint-config-prettier": "^7.0.0",
|
|
"@vue/eslint-config-typescript": "^10.0.0",
|
|
"@vue/test-utils": "^2.0.0-rc.18",
|
|
"autoprefixer": "^10.4.2",
|
|
"concurrently": "^7.0.0",
|
|
"dotenv": "^14.3.2",
|
|
"eslint": "^8.5.0",
|
|
"eslint-plugin-prettier": "^4.0.0",
|
|
"eslint-plugin-vue": "^8.2.0",
|
|
"jsdom": "^19.0.0",
|
|
"nodemon": "^2.0.15",
|
|
"pino-pretty": "^7.5.1",
|
|
"postcss": "^8.4.5",
|
|
"prettier": "^2.5.1",
|
|
"prisma": "^3.8.1",
|
|
"tailwindcss": "^3.0.15",
|
|
"ts-node": "^10.4.0",
|
|
"typescript": "~4.5.4",
|
|
"vite": "^2.7.13",
|
|
"vitest": "^0.1.23",
|
|
"vue-tsc": "^0.29.8"
|
|
}
|
|
}
|