├── .dockerignore ├── .gitignore ├── .vscode ├── extensions.json └── launch.json ├── LICENSE ├── README.md ├── architecture ├── class-diagram.png └── class-diagram.puml ├── backend ├── .env.example ├── .eslintrc.json ├── .prettierignore ├── .prettierrc ├── Dockerfile ├── bin │ └── www ├── dev.Dockerfile ├── package-lock.json ├── package.json ├── src │ ├── app.js │ ├── database-connection.js │ ├── models │ │ └── user.js │ ├── public │ │ └── stylesheets │ │ │ └── style.css │ ├── routes │ │ ├── index.js │ │ └── users.js │ └── views │ │ ├── error.pug │ │ ├── index.pug │ │ └── layout.pug └── test │ └── ping.test.js ├── docker-compose.debug.yml ├── docker-compose.yml ├── frontend ├── .env.example ├── .eslintrc.cjs ├── .gitignore ├── .prettierrc.json ├── .vscode │ └── extensions.json ├── Dockerfile ├── README.md ├── dev.Dockerfile ├── env.d.ts ├── index.html ├── package-lock.json ├── package.json ├── public │ └── favicon.ico ├── src │ ├── app.vue │ ├── assets │ │ ├── base.css │ │ ├── logo.svg │ │ └── main.css │ ├── components │ │ ├── HelloWorld.vue │ │ ├── TheWelcome.vue │ │ ├── WelcomeItem.vue │ │ └── icons │ │ │ ├── IconCommunity.vue │ │ │ ├── IconDocumentation.vue │ │ │ ├── IconEcosystem.vue │ │ │ ├── IconSupport.vue │ │ │ └── IconTooling.vue │ ├── main.ts │ ├── router │ │ └── index.ts │ ├── stores │ │ ├── counter.ts │ │ └── user.ts │ └── views │ │ ├── AboutView.vue │ │ └── HomeView.vue ├── tsconfig.app.json ├── tsconfig.json ├── tsconfig.node.json └── vite.config.ts ├── package-lock.json └── package.json /.dockerignore: -------------------------------------------------------------------------------- 1 | **/.classpath 2 | **/.dockerignore 3 | **/.env 4 | **/.git 5 | **/.gitignore 6 | **/.project 7 | **/.settings 8 | **/.toolstarget 9 | **/.vs 10 | **/.vscode 11 | **/*.*proj.user 12 | **/*.dbmdl 13 | **/*.jfm 14 | **/azds.yaml 15 | **/charts 16 | **/docker-compose* 17 | **/Dockerfile* 18 | **/node_modules 19 | **/npm-debug.log 20 | **/obj 21 | **/secrets.dev.yaml 22 | **/values.dev.yaml 23 | README.md 24 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # Logs 2 | logs 3 | *.log 4 | npm-debug.log* 5 | yarn-debug.log* 6 | yarn-error.log* 7 | lerna-debug.log* 8 | 9 | # Diagnostic reports (https://nodejs.org/api/report.html) 10 | report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json 11 | 12 | # Runtime data 13 | pids 14 | *.pid 15 | *.seed 16 | *.pid.lock 17 | 18 | # Directory for instrumented libs generated by jscoverage/JSCover 19 | lib-cov 20 | 21 | # Coverage directory used by tools like istanbul 22 | coverage 23 | *.lcov 24 | 25 | # nyc test coverage 26 | .nyc_output 27 | 28 | # Grunt intermediate storage (https://gruntjs.com/creating-plugins#storing-task-files) 29 | .grunt 30 | 31 | # Bower dependency directory (https://bower.io/) 32 | bower_components 33 | 34 | # node-waf configuration 35 | .lock-wscript 36 | 37 | # Compiled binary addons (https://nodejs.org/api/addons.html) 38 | build/Release 39 | 40 | # Dependency directories 41 | node_modules/ 42 | jspm_packages/ 43 | 44 | # TypeScript v1 declaration files 45 | typings/ 46 | 47 | # TypeScript cache 48 | *.tsbuildinfo 49 | 50 | # Optional npm cache directory 51 | .npm 52 | 53 | # Optional eslint cache 54 | .eslintcache 55 | 56 | # Microbundle cache 57 | .rpt2_cache/ 58 | .rts2_cache_cjs/ 59 | .rts2_cache_es/ 60 | .rts2_cache_umd/ 61 | 62 | # Optional REPL history 63 | .node_repl_history 64 | 65 | # Output of 'npm pack' 66 | *.tgz 67 | 68 | # Yarn Integrity file 69 | .yarn-integrity 70 | 71 | # dotenv environment variables file 72 | .env 73 | .env.test 74 | 75 | # parcel-bundler cache (https://parceljs.org/) 76 | .cache 77 | 78 | # Next.js build output 79 | .next 80 | 81 | # Nuxt.js build / generate output 82 | .nuxt 83 | dist 84 | 85 | # Gatsby files 86 | .cache/ 87 | # Comment in the public line in if your project uses Gatsby and *not* Next.js 88 | # https://nextjs.org/blog/next-9-1#public-directory-support 89 | # public 90 | 91 | # vuepress build output 92 | .vuepress/dist 93 | 94 | # Serverless directories 95 | .serverless/ 96 | 97 | # FuseBox cache 98 | .fusebox/ 99 | 100 | # DynamoDB Local files 101 | .dynamodb/ 102 | 103 | # TernJS port file 104 | .tern-port 105 | -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- 1 | { 2 | "recommendations": [ 3 | "Vue.volar", 4 | "Vue.vscode-typescript-vue-plugin", 5 | "dbaeumer.vscode-eslint", 6 | "esbenp.prettier-vscode" 7 | ] 8 | } 9 | -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- 1 | { 2 | // Use IntelliSense to learn about possible attributes. 3 | // Hover to view descriptions of existing attributes. 4 | // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387 5 | "version": "0.2.0", 6 | "configurations": [ 7 | { 8 | "type": "node", 9 | "request": "attach", 10 | "name": "Attach to backend", 11 | "remoteRoot": "/app", 12 | "localRoot": "backend", 13 | "restart": true 14 | } 15 | ] 16 | } 17 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2020 Armagan Amcalar 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # stack(MEVN Stack) 2 | 3 | A starter repository for MongoDB, Node.js, and Vue.js, with a local environment based on Docker. 4 | 5 | Technologies used: 6 | 7 | - Backend 8 | - Node.js 9 | - Express 10 | - MongoDB 11 | - Mongoose 12 | - Jest 13 | - ESLint 14 | - Prettier 15 | - Husky 16 | - Lint-staged 17 | - Docker 18 | 19 | - Frontend 20 | - Vue.js 21 | - Pinia 22 | - Vite 23 | - ESLint 24 | - Prettier 25 | - Husky 26 | 27 | - DB 28 | - MongoDB 29 | - Mongoose 30 | 31 | - UML Diagram Generation 32 | - PlantUML 33 | 34 | # Installation 35 | 36 | ## Running the stack 37 | 38 | ```sh 39 | $ docker-compose up 40 | ``` 41 | 42 | ## Accessing the stack from a browser 43 | 44 | The starter stack works with a load balancer that binds to ports 80 and 443. It currently serves the domain http://stack.localhost. In order to reach the frontend through the stack, you need to edit your `hosts` file (usually under `/etc/hosts` in UNIX environments and `C:\Windows\System32\Drivers\etc\hosts` in Windows) and add the following line: 45 | 46 | ``` 47 | 127.0.0.1 stack.localhost 48 | ``` 49 | 50 | Now if you visit http://stack.localhost, you will be greeted with the frontend starter project. 51 | 52 | ## Changing the local domain 53 | 54 | If you wish to use a domain name other than http://stack.localhost, simply set the environment variable `DOMAIN` to any domain you want. 55 | 56 | ```sh 57 | $ DOMAIN=another-domain.localhost docker-compose up 58 | ``` 59 | 60 | You then also need to update your `hosts` file accordingly. 61 | 62 | ## Debugging 63 | 64 | You can debug the backend while it's running in VSCode. Instead of running `docker-compose up`, run the following command: 65 | 66 | ```sh 67 | $ docker-compose -f docker-compose.yml -f docker-compose.debug.yml up 68 | ``` 69 | 70 | This starts the backend service in the debug mode, so you can use the built-in debug task `Attach to backend` to debug your backend service. 71 | 72 | # Running tests 73 | 74 | ## Running backend tests 75 | 76 | ```sh 77 | $ cd backend 78 | $ npm i 79 | $ npm test 80 | ``` 81 | 82 | ## Running frontend tests 83 | 84 | ```sh 85 | $ cd frontend 86 | $ npm i 87 | $ npm test:unit 88 | $ npm test:e2e 89 | ``` 90 | 91 | # Linting 92 | 93 | Run `npm install` on the root folder and it will set up a pre-commit hook to lint the staged files. You will also have two lint commands, `npm lint` and `npm lint-staged` that you can run on the root folder. 94 | 95 | These commands run the individual `lint` and `lint-staged` scripts in both the `frontend` and the `backend` folders, and they will respect individual configurations of these folders. 96 | 97 | # License 98 | 99 | MIT License 100 | 101 | Copyright (c) 2020 Armagan Amcalar 102 | 103 | Permission is hereby granted, free of charge, to any person obtaining a copy 104 | of this software and associated documentation files (the "Software"), to deal 105 | in the Software without restriction, including without limitation the rights 106 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 107 | copies of the Software, and to permit persons to whom the Software is 108 | furnished to do so, subject to the following conditions: 109 | 110 | The above copyright notice and this permission notice shall be included in all 111 | copies or substantial portions of the Software. 112 | 113 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 114 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 115 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 116 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 117 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 118 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 119 | SOFTWARE. 120 | -------------------------------------------------------------------------------- /architecture/class-diagram.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashersw/stack/d4a9fc3531fcdabbf9f7fe2bd2d2031cc69b1aee/architecture/class-diagram.png -------------------------------------------------------------------------------- /architecture/class-diagram.puml: -------------------------------------------------------------------------------- 1 | @startuml 2 | abstract abstract 3 | abstract class "abstract class" 4 | annotation annotation 5 | circle circle 6 | () circle_short_form 7 | class class 8 | class class_stereo <> 9 | diamond diamond 10 | <> diamond_short_form 11 | entity entity 12 | enum enum 13 | exception exception 14 | interface interface 15 | metaclass metaclass 16 | protocol protocol 17 | stereotype stereotype 18 | struct struct 19 | @enduml 20 | -------------------------------------------------------------------------------- /backend/.env.example: -------------------------------------------------------------------------------- 1 | MONGODB_CONNECTION_STRING=mongodb://localhost:27017 2 | -------------------------------------------------------------------------------- /backend/.eslintrc.json: -------------------------------------------------------------------------------- 1 | { 2 | "env": { 3 | "node": true, 4 | "jest": true 5 | }, 6 | "parserOptions": { 7 | "ecmaVersion": 2020 8 | }, 9 | "extends": [ 10 | "airbnb", 11 | "prettier", 12 | "prettier/standard" 13 | ], 14 | "rules": { 15 | "eqeqeq": "off", 16 | "class-methods-use-this": "off", 17 | "eslint-plugin-import/no-extraneous-dependencies": "off" 18 | }, 19 | "settings": { 20 | "react": { 21 | "version": "latest" 22 | } 23 | } 24 | } 25 | -------------------------------------------------------------------------------- /backend/.prettierignore: -------------------------------------------------------------------------------- 1 | *.log 2 | .DS_Store 3 | .build 4 | .cache/ 5 | build/ 6 | coverage/ 7 | dist/ 8 | orig/ 9 | tmp/ 10 | package-lock.json 11 | public/ 12 | -------------------------------------------------------------------------------- /backend/.prettierrc: -------------------------------------------------------------------------------- 1 | { 2 | "singleQuote": true, 3 | "arrowParens": "avoid", 4 | "printWidth": 120, 5 | "semi": false, 6 | "trailingComma": "es5" 7 | } 8 | -------------------------------------------------------------------------------- /backend/Dockerfile: -------------------------------------------------------------------------------- 1 | FROM node:23-alpine 2 | 3 | WORKDIR /src 4 | 5 | RUN npm install -g npm@latest 6 | 7 | ADD package.json package-lock.json ./ 8 | 9 | RUN npm install 10 | 11 | WORKDIR /src 12 | 13 | ENV NODE_ENV=production 14 | 15 | COPY package.json ./ 16 | COPY src ./src 17 | COPY bin ./bin 18 | 19 | CMD ["npm", "start"] 20 | -------------------------------------------------------------------------------- /backend/bin/www: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env node 2 | 3 | /* eslint-disable */ 4 | 5 | /** 6 | * Module dependencies. 7 | */ 8 | 9 | const app = require('../src/app') 10 | const debug = require('debug')('backend:server') 11 | const http = require('http') 12 | 13 | /** 14 | * Get port from environment and store in Express. 15 | */ 16 | 17 | const port = normalizePort(process.env.PORT || '3000') 18 | app.set('port', port) 19 | 20 | /** 21 | * Create HTTP server. 22 | */ 23 | 24 | const server = http.createServer(app) 25 | 26 | /** 27 | * Listen on provided port, on all network interfaces. 28 | */ 29 | 30 | server.listen(port) 31 | server.on('error', onError) 32 | server.on('listening', onListening) 33 | 34 | /** 35 | * Normalize a port into a number, string, or false. 36 | */ 37 | 38 | function normalizePort(val) { 39 | const port = parseInt(val, 10) 40 | 41 | if (isNaN(port)) { 42 | // named pipe 43 | return val 44 | } 45 | 46 | if (port >= 0) { 47 | // port number 48 | return port 49 | } 50 | 51 | return false 52 | } 53 | 54 | /** 55 | * Event listener for HTTP server "error" event. 56 | */ 57 | 58 | function onError(error) { 59 | if (error.syscall !== 'listen') { 60 | throw error 61 | } 62 | 63 | const bind = typeof port === 'string' ? `Pipe ${port}` : `Port ${port}` 64 | 65 | // handle specific listen errors with friendly messages 66 | switch (error.code) { 67 | case 'EACCES': 68 | console.error(`${bind} requires elevated privileges`) 69 | process.exit(1) 70 | break 71 | case 'EADDRINUSE': 72 | console.error(`${bind} is already in use`) 73 | process.exit(1) 74 | break 75 | default: 76 | throw error 77 | } 78 | } 79 | 80 | /** 81 | * Event listener for HTTP server "listening" event. 82 | */ 83 | 84 | function onListening() { 85 | const addr = server.address() 86 | const bind = typeof addr === 'string' ? `pipe ${addr}` : `port ${addr.port}` 87 | debug(`Listening on ${bind}`) 88 | } 89 | -------------------------------------------------------------------------------- /backend/dev.Dockerfile: -------------------------------------------------------------------------------- 1 | FROM node:23-alpine 2 | 3 | WORKDIR /app 4 | 5 | RUN npm install -g npm@latest 6 | 7 | ADD package.json ./ 8 | 9 | RUN npm install --legacy-peer-deps 10 | 11 | ADD bin ./bin 12 | 13 | CMD [ "npm", "run", "dev" ] 14 | -------------------------------------------------------------------------------- /backend/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "backend", 3 | "version": "0.0.0", 4 | "private": true, 5 | "scripts": { 6 | "start": "node ./bin/www", 7 | "dev": "node --watch ./bin/www", 8 | "lint": "pretty-quick -w . && eslint . --fix", 9 | "lint-staged": "lint-staged", 10 | "test": "jest --testEnvironment=node --verbose --forceExit --watchAll --maxWorkers=1", 11 | "test-coverage": " jest --collect-coverage --testEnvironment=node --forceExit --maxWorkers=1" 12 | }, 13 | "lint-staged": { 14 | "*.js": [ 15 | "pretty-quick --staged", 16 | "eslint --fix" 17 | ], 18 | "*.{json|css|md}": [ 19 | "pretty-quick --staged" 20 | ] 21 | }, 22 | "dependencies": { 23 | "cookie-parser": "~1.4.7", 24 | "debug": "~4.4.0", 25 | "dotenv": "^16.4.7", 26 | "express": "~4.21.2", 27 | "http-errors": "~2.0.0", 28 | "mongoose": "^8.11.0", 29 | "mongoose-autopopulate": "^1.1.0", 30 | "morgan": "~1.10.0", 31 | "pug": "3.0.3" 32 | }, 33 | "devDependencies": { 34 | "eslint": "^9.21.0", 35 | "eslint-config-airbnb": "^19.0.4", 36 | "eslint-config-prettier": "^10.0.2", 37 | "eslint-plugin-import": "^2.31.0", 38 | "eslint-plugin-jsx-a11y": "^6.10.2", 39 | "eslint-plugin-react": "^7.37.4", 40 | "eslint-plugin-react-hooks": "^5.1.0", 41 | "jest": "^29.7.0", 42 | "lint-staged": "^15.4.3", 43 | "prettier": "^3.5.2", 44 | "pretty-quick": "^4.0.0", 45 | "supertest": "^7.0.0" 46 | } 47 | } 48 | -------------------------------------------------------------------------------- /backend/src/app.js: -------------------------------------------------------------------------------- 1 | const createError = require('http-errors') 2 | const express = require('express') 3 | const path = require('path') 4 | const cookieParser = require('cookie-parser') 5 | const logger = require('morgan') 6 | require('dotenv').config() 7 | 8 | const indexRouter = require('./routes/index') 9 | const usersRouter = require('./routes/users') 10 | 11 | require('./database-connection') 12 | 13 | const app = express() 14 | 15 | // view engine setup 16 | app.set('views', path.join(__dirname, 'views')) 17 | app.set('view engine', 'pug') 18 | 19 | app.use(logger('dev')) 20 | app.use(express.json()) 21 | app.use(express.urlencoded({ extended: false })) 22 | app.use(cookieParser()) 23 | app.use(express.static(path.join(__dirname, 'public'))) 24 | 25 | app.use('/', indexRouter) 26 | app.use('/users', usersRouter) 27 | 28 | // catch 404 and forward to error handler 29 | app.use((req, res, next) => { 30 | next(createError(404)) 31 | }) 32 | 33 | // error handler 34 | /* eslint-disable-next-line */ 35 | app.use((err, req, res, next) => { 36 | const error = { 37 | status: err.status || 500, 38 | message: err.message, 39 | } 40 | 41 | if (req.app.get('env') === 'development') { 42 | error.stack = err.stack 43 | } 44 | 45 | res.status(error.status) 46 | 47 | res.send(error) 48 | }) 49 | 50 | module.exports = app 51 | -------------------------------------------------------------------------------- /backend/src/database-connection.js: -------------------------------------------------------------------------------- 1 | /* eslint-disable no-console */ 2 | const mongoose = require('mongoose') 3 | 4 | const connectionString = process.env.MONGODB_CONNECTION_STRING || 'mongodb://localhost' 5 | 6 | mongoose.set('debug', true) 7 | 8 | mongoose 9 | .connect(connectionString, { 10 | useNewUrlParser: true, 11 | useUnifiedTopology: true, 12 | }) 13 | .then(() => console.log('Database connection established.')) 14 | .catch(console.log) 15 | 16 | module.exports = mongoose.connection 17 | -------------------------------------------------------------------------------- /backend/src/models/user.js: -------------------------------------------------------------------------------- 1 | const mongoose = require('mongoose') 2 | const autopopulate = require('mongoose-autopopulate') 3 | 4 | const userSchema = new mongoose.Schema( 5 | { 6 | name: { 7 | type: String, 8 | unique: true, 9 | }, 10 | }, 11 | { timestamps: true } 12 | ) 13 | 14 | userSchema.plugin(autopopulate) 15 | 16 | module.exports = mongoose.model('User', userSchema) 17 | -------------------------------------------------------------------------------- /backend/src/public/stylesheets/style.css: -------------------------------------------------------------------------------- 1 | body { 2 | padding: 50px; 3 | font: 14px 'Lucida Grande', Helvetica, Arial, sans-serif; 4 | } 5 | 6 | a { 7 | color: #00b7ff; 8 | } 9 | -------------------------------------------------------------------------------- /backend/src/routes/index.js: -------------------------------------------------------------------------------- 1 | const express = require('express') 2 | 3 | const router = express.Router() 4 | 5 | router.get('/', (req, res) => { 6 | res.render('index', { title: 'Express' }) 7 | }) 8 | 9 | router.get('/ping', (req, res) => { 10 | res.sendStatus(200) 11 | }) 12 | 13 | module.exports = router 14 | -------------------------------------------------------------------------------- /backend/src/routes/users.js: -------------------------------------------------------------------------------- 1 | const express = require('express') 2 | const User = require('../models/user') 3 | 4 | const router = express.Router() 5 | 6 | router.get('/', async (req, res) => { 7 | res.send(await User.find()) 8 | }) 9 | 10 | module.exports = router 11 | -------------------------------------------------------------------------------- /backend/src/views/error.pug: -------------------------------------------------------------------------------- 1 | extends layout 2 | 3 | block content 4 | h1= message 5 | h2= error.status 6 | pre #{error.stack} 7 | -------------------------------------------------------------------------------- /backend/src/views/index.pug: -------------------------------------------------------------------------------- 1 | extends layout 2 | 3 | block content 4 | h1= title 5 | p Welcome to #{title} 6 | -------------------------------------------------------------------------------- /backend/src/views/layout.pug: -------------------------------------------------------------------------------- 1 | doctype html 2 | html 3 | head 4 | title= title 5 | link(rel='stylesheet', href='/stylesheets/style.css') 6 | body 7 | block content 8 | -------------------------------------------------------------------------------- /backend/test/ping.test.js: -------------------------------------------------------------------------------- 1 | const supertest = require('supertest') 2 | const app = require('../src/app') 3 | 4 | const request = supertest(app) 5 | 6 | describe('Ping', () => { 7 | it('GET /ping returns 200', async () => { 8 | const { status } = await request.get('/ping') 9 | expect(status).toBe(200) 10 | }) 11 | }) 12 | -------------------------------------------------------------------------------- /docker-compose.debug.yml: -------------------------------------------------------------------------------- 1 | version: '3' 2 | services: 3 | backend: 4 | ports: 5 | - 9229:9229 6 | command: ['node --watch', '--inspect=0.0.0.0:9229', 'bin/www'] 7 | -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- 1 | version: '3' 2 | services: 3 | frontend: 4 | image: stack-frontend 5 | build: 6 | context: frontend 7 | dockerfile: dev.Dockerfile 8 | labels: 9 | - 'traefik.enable=true' 10 | - 'traefik.http.routers.frontend.rule=Host(`${DOMAIN:-stack.localhost}`)' 11 | - 'traefik.http.routers.frontend.entrypoints=web' 12 | ports: 13 | - 3001:3001 14 | volumes: 15 | - ./frontend/src:/app/src 16 | - ./frontend/public:/app/public 17 | backend: 18 | image: stack-backend 19 | build: 20 | context: backend 21 | dockerfile: dev.Dockerfile 22 | environment: 23 | - MONGODB_CONNECTION_STRING=mongodb://mongo/stack 24 | labels: 25 | - 'traefik.enable=true' 26 | - 'traefik.http.routers.backend.rule=Host(`${DOMAIN:-stack.localhost}`) && (PathPrefix(`/api`) || PathPrefix(`/socket`))' 27 | - 'traefik.http.middlewares.backend-stripprefix.stripprefix.prefixes=/api' 28 | - 'traefik.http.routers.backend.middlewares=backend-stripprefix@docker' 29 | - 'traefik.http.routers.backend.entrypoints=web' 30 | ports: 31 | - 3000 32 | - 35729:35729 33 | volumes: 34 | - ./backend/src:/app/src 35 | mongo: 36 | image: mongo 37 | ports: 38 | - 37017:27017 39 | load-balancer: 40 | image: traefik:v2.2 41 | command: 42 | - '--api.insecure=true' 43 | - '--providers.docker=true' 44 | - '--providers.docker.exposedbydefault=false' 45 | - '--entrypoints.web.address=:80' 46 | ports: 47 | - '80:80' 48 | - '8080:8080' 49 | volumes: 50 | - '/var/run/docker.sock:/var/run/docker.sock:ro' 51 | -------------------------------------------------------------------------------- /frontend/.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashersw/stack/d4a9fc3531fcdabbf9f7fe2bd2d2031cc69b1aee/frontend/.env.example -------------------------------------------------------------------------------- /frontend/.eslintrc.cjs: -------------------------------------------------------------------------------- 1 | /* eslint-env node */ 2 | require('@rushstack/eslint-patch/modern-module-resolution') 3 | 4 | module.exports = { 5 | root: true, 6 | 'extends': [ 7 | 'plugin:vue/vue3-essential', 8 | 'plugin:vue-pug/vue3-recommended', 9 | 'eslint:recommended', 10 | '@vue/eslint-config-typescript', 11 | '@vue/eslint-config-prettier/skip-formatting' 12 | ], 13 | parserOptions: { 14 | ecmaVersion: 'latest' 15 | } 16 | } 17 | -------------------------------------------------------------------------------- /frontend/.gitignore: -------------------------------------------------------------------------------- 1 | # Logs 2 | logs 3 | *.log 4 | npm-debug.log* 5 | yarn-debug.log* 6 | yarn-error.log* 7 | pnpm-debug.log* 8 | lerna-debug.log* 9 | 10 | node_modules 11 | .DS_Store 12 | dist 13 | dist-ssr 14 | coverage 15 | *.local 16 | 17 | /cypress/videos/ 18 | /cypress/screenshots/ 19 | 20 | # Editor directories and files 21 | .vscode/* 22 | !.vscode/extensions.json 23 | .idea 24 | *.suo 25 | *.ntvs* 26 | *.njsproj 27 | *.sln 28 | *.sw? 29 | 30 | *.tsbuildinfo 31 | -------------------------------------------------------------------------------- /frontend/.prettierrc.json: -------------------------------------------------------------------------------- 1 | { 2 | "$schema": "https://json.schemastore.org/prettierrc", 3 | "semi": false, 4 | "tabWidth": 2, 5 | "singleQuote": true, 6 | "printWidth": 100, 7 | "trailingComma": "none" 8 | } -------------------------------------------------------------------------------- /frontend/.vscode/extensions.json: -------------------------------------------------------------------------------- 1 | { 2 | "recommendations": [ 3 | "Vue.volar", 4 | "Vue.vscode-typescript-vue-plugin", 5 | "dbaeumer.vscode-eslint", 6 | "esbenp.prettier-vscode" 7 | ] 8 | } 9 | -------------------------------------------------------------------------------- /frontend/Dockerfile: -------------------------------------------------------------------------------- 1 | FROM node:23-alpine 2 | 3 | WORKDIR /app 4 | 5 | RUN npm install -g npm@latest 6 | 7 | ADD package.json package-lock.json ./ 8 | 9 | RUN npm install 10 | 11 | ADD .eslintrc.cjs .prettierrc.json env.d.ts index.html tsconfig.node.json tsconfig.app.json vite.config.ts ./ 12 | 13 | COPY src ./src 14 | COPY public ./public 15 | 16 | RUN npm run build 17 | 18 | WORKDIR /app 19 | 20 | CMD [ "npm", "start" ] 21 | -------------------------------------------------------------------------------- /frontend/README.md: -------------------------------------------------------------------------------- 1 | # frontend 2 | 3 | This template should help get you started developing with Vue 3 in Vite. 4 | 5 | ## Recommended IDE Setup 6 | 7 | [VSCode](https://code.visualstudio.com/) + [Volar](https://marketplace.visualstudio.com/items?itemName=Vue.volar) (and disable Vetur) + [TypeScript Vue Plugin (Volar)](https://marketplace.visualstudio.com/items?itemName=Vue.vscode-typescript-vue-plugin). 8 | 9 | ## Type Support for `.vue` Imports in TS 10 | 11 | TypeScript cannot handle type information for `.vue` imports by default, so we replace the `tsc` CLI with `vue-tsc` for type checking. In editors, we need [TypeScript Vue Plugin (Volar)](https://marketplace.visualstudio.com/items?itemName=Vue.vscode-typescript-vue-plugin) to make the TypeScript language service aware of `.vue` types. 12 | 13 | If the standalone TypeScript plugin doesn't feel fast enough to you, Volar has also implemented a [Take Over Mode](https://github.com/johnsoncodehk/volar/discussions/471#discussioncomment-1361669) that is more performant. You can enable it by the following steps: 14 | 15 | 1. Disable the built-in TypeScript Extension 16 | 1) Run `Extensions: Show Built-in Extensions` from VSCode's command palette 17 | 2) Find `TypeScript and JavaScript Language Features`, right click and select `Disable (Workspace)` 18 | 2. Reload the VSCode window by running `Developer: Reload Window` from the command palette. 19 | 20 | ## Customize configuration 21 | 22 | See [Vite Configuration Reference](https://vitejs.dev/config/). 23 | 24 | ## Project Setup 25 | 26 | ```sh 27 | npm install 28 | ``` 29 | 30 | ### Compile and Hot-Reload for Development 31 | 32 | ```sh 33 | npm dev 34 | ``` 35 | 36 | ### Type-Check, Compile and Minify for Production 37 | 38 | ```sh 39 | npm build 40 | ``` 41 | 42 | ### Lint with [ESLint](https://eslint.org/) 43 | 44 | ```sh 45 | npm lint 46 | ``` 47 | -------------------------------------------------------------------------------- /frontend/dev.Dockerfile: -------------------------------------------------------------------------------- 1 | FROM node:23-alpine 2 | 3 | WORKDIR /app 4 | 5 | RUN npm install -g npm@latest 6 | 7 | ADD package.json ./ 8 | 9 | RUN npm install --legacy-peer-deps 10 | 11 | ADD .eslintrc.cjs .prettierrc.json env.d.ts index.html tsconfig.node.json tsconfig.app.json vite.config.ts .env ./ 12 | 13 | VOLUME [ "/app/src" ] 14 | VOLUME [ "/app/public" ] 15 | 16 | CMD [ "npm", "run", "dev" ] 17 | -------------------------------------------------------------------------------- /frontend/env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /frontend/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | Vite App 8 | 9 | 10 |
11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /frontend/package-lock.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "frontend", 3 | "version": "0.0.0", 4 | "lockfileVersion": 3, 5 | "requires": true, 6 | "packages": { 7 | "": { 8 | "name": "frontend", 9 | "version": "0.0.0", 10 | "dependencies": { 11 | "pinia": "^3.0.1", 12 | "vue": "^3.5.13", 13 | "vue-router": "^4.5.0" 14 | }, 15 | "devDependencies": { 16 | "@rushstack/eslint-patch": "^1.10.5", 17 | "@tsconfig/node20": "^20.1.4", 18 | "@types/node": "^22.13.5", 19 | "@vitejs/plugin-vue": "^5.2.1", 20 | "@vue/eslint-config-prettier": "^10.2.0", 21 | "@vue/eslint-config-typescript": "^14.4.0", 22 | "@vue/tsconfig": "^0.7.0", 23 | "eslint": "^9.21.0", 24 | "eslint-plugin-vue": "^9.32.0", 25 | "npm-run-all2": "^7.0.2", 26 | "prettier": "^3.5.2", 27 | "typescript": "~5.7.3", 28 | "vite": "^6.2.0", 29 | "vite-plugin-pug": "^0.4.1", 30 | "vue-tsc": "^2.2.4" 31 | } 32 | }, 33 | "node_modules/@babel/helper-string-parser": { 34 | "version": "7.25.9", 35 | "resolved": "https://registry.npmjs.org/@babel/helper-string-parser/-/helper-string-parser-7.25.9.tgz", 36 | "integrity": "sha512-4A/SCr/2KLd5jrtOMFzaKjVtAei3+2r/NChoBNoZ3EyP/+GlhoaEGoWOZUmFmoITP7zOJyHIMm+DYRd8o3PvHA==", 37 | "license": "MIT", 38 | "engines": { 39 | "node": ">=6.9.0" 40 | } 41 | }, 42 | "node_modules/@babel/helper-validator-identifier": { 43 | "version": "7.25.9", 44 | "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.25.9.tgz", 45 | "integrity": "sha512-Ed61U6XJc3CVRfkERJWDz4dJwKe7iLmmJsbOGu9wSloNSFttHV0I8g6UAgb7qnK5ly5bGLPd4oXZlxCdANBOWQ==", 46 | "license": "MIT", 47 | "engines": { 48 | "node": ">=6.9.0" 49 | } 50 | }, 51 | "node_modules/@babel/parser": { 52 | "version": "7.26.9", 53 | "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.26.9.tgz", 54 | "integrity": "sha512-81NWa1njQblgZbQHxWHpxxCzNsa3ZwvFqpUg7P+NNUU6f3UU2jBEg4OlF/J6rl8+PQGh1q6/zWScd001YwcA5A==", 55 | "license": "MIT", 56 | "dependencies": { 57 | "@babel/types": "^7.26.9" 58 | }, 59 | "bin": { 60 | "parser": "bin/babel-parser.js" 61 | }, 62 | "engines": { 63 | "node": ">=6.0.0" 64 | } 65 | }, 66 | "node_modules/@babel/types": { 67 | "version": "7.26.9", 68 | "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.26.9.tgz", 69 | "integrity": "sha512-Y3IR1cRnOxOCDvMmNiym7XpXQ93iGDDPHx+Zj+NM+rg0fBaShfQLkg+hKPaZCEvg5N/LeCo4+Rj/i3FuJsIQaw==", 70 | "license": "MIT", 71 | "dependencies": { 72 | "@babel/helper-string-parser": "^7.25.9", 73 | "@babel/helper-validator-identifier": "^7.25.9" 74 | }, 75 | "engines": { 76 | "node": ">=6.9.0" 77 | } 78 | }, 79 | "node_modules/@esbuild/darwin-arm64": { 80 | "version": "0.25.0", 81 | "resolved": "https://registry.npmjs.org/@esbuild/darwin-arm64/-/darwin-arm64-0.25.0.tgz", 82 | "integrity": "sha512-mVwdUb5SRkPayVadIOI78K7aAnPamoeFR2bT5nszFUZ9P8UpK4ratOdYbZZXYSqPKMHfS1wdHCJk1P1EZpRdvw==", 83 | "cpu": [ 84 | "arm64" 85 | ], 86 | "dev": true, 87 | "license": "MIT", 88 | "optional": true, 89 | "os": [ 90 | "darwin" 91 | ], 92 | "engines": { 93 | "node": ">=18" 94 | } 95 | }, 96 | "node_modules/@eslint-community/eslint-utils": { 97 | "version": "4.4.0", 98 | "resolved": "https://registry.npmjs.org/@eslint-community/eslint-utils/-/eslint-utils-4.4.0.tgz", 99 | "integrity": "sha512-1/sA4dwrzBAyeUoQ6oxahHKmrZvsnLCg4RfxW3ZFGGmQkSNQPFNLV9CUEFQP1x9EYXHTo5p6xdhZM1Ne9p/AfA==", 100 | "dev": true, 101 | "dependencies": { 102 | "eslint-visitor-keys": "^3.3.0" 103 | }, 104 | "engines": { 105 | "node": "^12.22.0 || ^14.17.0 || >=16.0.0" 106 | }, 107 | "peerDependencies": { 108 | "eslint": "^6.0.0 || ^7.0.0 || >=8.0.0" 109 | } 110 | }, 111 | "node_modules/@eslint-community/regexpp": { 112 | "version": "4.12.1", 113 | "resolved": "https://registry.npmjs.org/@eslint-community/regexpp/-/regexpp-4.12.1.tgz", 114 | "integrity": "sha512-CCZCDJuduB9OUkFkY2IgppNZMi2lBQgD2qzwXkEia16cge2pijY/aXi96CJMquDMn3nJdlPV1A5KrJEXwfLNzQ==", 115 | "dev": true, 116 | "license": "MIT", 117 | "engines": { 118 | "node": "^12.0.0 || ^14.0.0 || >=16.0.0" 119 | } 120 | }, 121 | "node_modules/@eslint/config-array": { 122 | "version": "0.19.2", 123 | "resolved": "https://registry.npmjs.org/@eslint/config-array/-/config-array-0.19.2.tgz", 124 | "integrity": "sha512-GNKqxfHG2ySmJOBSHg7LxeUx4xpuCoFjacmlCoYWEbaPXLwvfIjixRI12xCQZeULksQb23uiA8F40w5TojpV7w==", 125 | "dev": true, 126 | "license": "Apache-2.0", 127 | "dependencies": { 128 | "@eslint/object-schema": "^2.1.6", 129 | "debug": "^4.3.1", 130 | "minimatch": "^3.1.2" 131 | }, 132 | "engines": { 133 | "node": "^18.18.0 || ^20.9.0 || >=21.1.0" 134 | } 135 | }, 136 | "node_modules/@eslint/config-array/node_modules/brace-expansion": { 137 | "version": "1.1.11", 138 | "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", 139 | "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", 140 | "dev": true, 141 | "license": "MIT", 142 | "dependencies": { 143 | "balanced-match": "^1.0.0", 144 | "concat-map": "0.0.1" 145 | } 146 | }, 147 | "node_modules/@eslint/config-array/node_modules/minimatch": { 148 | "version": "3.1.2", 149 | "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", 150 | "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", 151 | "dev": true, 152 | "license": "ISC", 153 | "dependencies": { 154 | "brace-expansion": "^1.1.7" 155 | }, 156 | "engines": { 157 | "node": "*" 158 | } 159 | }, 160 | "node_modules/@eslint/core": { 161 | "version": "0.12.0", 162 | "resolved": "https://registry.npmjs.org/@eslint/core/-/core-0.12.0.tgz", 163 | "integrity": "sha512-cmrR6pytBuSMTaBweKoGMwu3EiHiEC+DoyupPmlZ0HxBJBtIxwe+j/E4XPIKNx+Q74c8lXKPwYawBf5glsTkHg==", 164 | "dev": true, 165 | "license": "Apache-2.0", 166 | "dependencies": { 167 | "@types/json-schema": "^7.0.15" 168 | }, 169 | "engines": { 170 | "node": "^18.18.0 || ^20.9.0 || >=21.1.0" 171 | } 172 | }, 173 | "node_modules/@eslint/eslintrc": { 174 | "version": "3.3.0", 175 | "resolved": "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-3.3.0.tgz", 176 | "integrity": "sha512-yaVPAiNAalnCZedKLdR21GOGILMLKPyqSLWaAjQFvYA2i/ciDi8ArYVr69Anohb6cH2Ukhqti4aFnYyPm8wdwQ==", 177 | "dev": true, 178 | "license": "MIT", 179 | "dependencies": { 180 | "ajv": "^6.12.4", 181 | "debug": "^4.3.2", 182 | "espree": "^10.0.1", 183 | "globals": "^14.0.0", 184 | "ignore": "^5.2.0", 185 | "import-fresh": "^3.2.1", 186 | "js-yaml": "^4.1.0", 187 | "minimatch": "^3.1.2", 188 | "strip-json-comments": "^3.1.1" 189 | }, 190 | "engines": { 191 | "node": "^18.18.0 || ^20.9.0 || >=21.1.0" 192 | }, 193 | "funding": { 194 | "url": "https://opencollective.com/eslint" 195 | } 196 | }, 197 | "node_modules/@eslint/eslintrc/node_modules/brace-expansion": { 198 | "version": "1.1.11", 199 | "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", 200 | "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", 201 | "dev": true, 202 | "license": "MIT", 203 | "dependencies": { 204 | "balanced-match": "^1.0.0", 205 | "concat-map": "0.0.1" 206 | } 207 | }, 208 | "node_modules/@eslint/eslintrc/node_modules/eslint-visitor-keys": { 209 | "version": "4.2.0", 210 | "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-4.2.0.tgz", 211 | "integrity": "sha512-UyLnSehNt62FFhSwjZlHmeokpRK59rcz29j+F1/aDgbkbRTk7wIc9XzdoasMUbRNKDM0qQt/+BJ4BrpFeABemw==", 212 | "dev": true, 213 | "license": "Apache-2.0", 214 | "engines": { 215 | "node": "^18.18.0 || ^20.9.0 || >=21.1.0" 216 | }, 217 | "funding": { 218 | "url": "https://opencollective.com/eslint" 219 | } 220 | }, 221 | "node_modules/@eslint/eslintrc/node_modules/espree": { 222 | "version": "10.3.0", 223 | "resolved": "https://registry.npmjs.org/espree/-/espree-10.3.0.tgz", 224 | "integrity": "sha512-0QYC8b24HWY8zjRnDTL6RiHfDbAWn63qb4LMj1Z4b076A4une81+z03Kg7l7mn/48PUTqoLptSXez8oknU8Clg==", 225 | "dev": true, 226 | "license": "BSD-2-Clause", 227 | "dependencies": { 228 | "acorn": "^8.14.0", 229 | "acorn-jsx": "^5.3.2", 230 | "eslint-visitor-keys": "^4.2.0" 231 | }, 232 | "engines": { 233 | "node": "^18.18.0 || ^20.9.0 || >=21.1.0" 234 | }, 235 | "funding": { 236 | "url": "https://opencollective.com/eslint" 237 | } 238 | }, 239 | "node_modules/@eslint/eslintrc/node_modules/globals": { 240 | "version": "14.0.0", 241 | "resolved": "https://registry.npmjs.org/globals/-/globals-14.0.0.tgz", 242 | "integrity": "sha512-oahGvuMGQlPw/ivIYBjVSrWAfWLBeku5tpPE2fOPLi+WHffIWbuh2tCjhyQhTBPMf5E9jDEH4FOmTYgYwbKwtQ==", 243 | "dev": true, 244 | "license": "MIT", 245 | "engines": { 246 | "node": ">=18" 247 | }, 248 | "funding": { 249 | "url": "https://github.com/sponsors/sindresorhus" 250 | } 251 | }, 252 | "node_modules/@eslint/eslintrc/node_modules/minimatch": { 253 | "version": "3.1.2", 254 | "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", 255 | "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", 256 | "dev": true, 257 | "license": "ISC", 258 | "dependencies": { 259 | "brace-expansion": "^1.1.7" 260 | }, 261 | "engines": { 262 | "node": "*" 263 | } 264 | }, 265 | "node_modules/@eslint/js": { 266 | "version": "9.21.0", 267 | "resolved": "https://registry.npmjs.org/@eslint/js/-/js-9.21.0.tgz", 268 | "integrity": "sha512-BqStZ3HX8Yz6LvsF5ByXYrtigrV5AXADWLAGc7PH/1SxOb7/FIYYMszZZWiUou/GB9P2lXWk2SV4d+Z8h0nknw==", 269 | "dev": true, 270 | "license": "MIT", 271 | "engines": { 272 | "node": "^18.18.0 || ^20.9.0 || >=21.1.0" 273 | } 274 | }, 275 | "node_modules/@eslint/object-schema": { 276 | "version": "2.1.6", 277 | "resolved": "https://registry.npmjs.org/@eslint/object-schema/-/object-schema-2.1.6.tgz", 278 | "integrity": "sha512-RBMg5FRL0I0gs51M/guSAj5/e14VQ4tpZnQNWwuDT66P14I43ItmPfIZRhO9fUVIPOAQXU47atlywZ/czoqFPA==", 279 | "dev": true, 280 | "license": "Apache-2.0", 281 | "engines": { 282 | "node": "^18.18.0 || ^20.9.0 || >=21.1.0" 283 | } 284 | }, 285 | "node_modules/@eslint/plugin-kit": { 286 | "version": "0.2.7", 287 | "resolved": "https://registry.npmjs.org/@eslint/plugin-kit/-/plugin-kit-0.2.7.tgz", 288 | "integrity": "sha512-JubJ5B2pJ4k4yGxaNLdbjrnk9d/iDz6/q8wOilpIowd6PJPgaxCuHBnBszq7Ce2TyMrywm5r4PnKm6V3iiZF+g==", 289 | "dev": true, 290 | "license": "Apache-2.0", 291 | "dependencies": { 292 | "@eslint/core": "^0.12.0", 293 | "levn": "^0.4.1" 294 | }, 295 | "engines": { 296 | "node": "^18.18.0 || ^20.9.0 || >=21.1.0" 297 | } 298 | }, 299 | "node_modules/@humanfs/core": { 300 | "version": "0.19.1", 301 | "resolved": "https://registry.npmjs.org/@humanfs/core/-/core-0.19.1.tgz", 302 | "integrity": "sha512-5DyQ4+1JEUzejeK1JGICcideyfUbGixgS9jNgex5nqkW+cY7WZhxBigmieN5Qnw9ZosSNVC9KQKyb+GUaGyKUA==", 303 | "dev": true, 304 | "license": "Apache-2.0", 305 | "engines": { 306 | "node": ">=18.18.0" 307 | } 308 | }, 309 | "node_modules/@humanfs/node": { 310 | "version": "0.16.6", 311 | "resolved": "https://registry.npmjs.org/@humanfs/node/-/node-0.16.6.tgz", 312 | "integrity": "sha512-YuI2ZHQL78Q5HbhDiBA1X4LmYdXCKCMQIfw0pw7piHJwyREFebJUvrQN4cMssyES6x+vfUbx1CIpaQUKYdQZOw==", 313 | "dev": true, 314 | "license": "Apache-2.0", 315 | "dependencies": { 316 | "@humanfs/core": "^0.19.1", 317 | "@humanwhocodes/retry": "^0.3.0" 318 | }, 319 | "engines": { 320 | "node": ">=18.18.0" 321 | } 322 | }, 323 | "node_modules/@humanfs/node/node_modules/@humanwhocodes/retry": { 324 | "version": "0.3.1", 325 | "resolved": "https://registry.npmjs.org/@humanwhocodes/retry/-/retry-0.3.1.tgz", 326 | "integrity": "sha512-JBxkERygn7Bv/GbN5Rv8Ul6LVknS+5Bp6RgDC/O8gEBU/yeH5Ui5C/OlWrTb6qct7LjjfT6Re2NxB0ln0yYybA==", 327 | "dev": true, 328 | "license": "Apache-2.0", 329 | "engines": { 330 | "node": ">=18.18" 331 | }, 332 | "funding": { 333 | "type": "github", 334 | "url": "https://github.com/sponsors/nzakas" 335 | } 336 | }, 337 | "node_modules/@humanwhocodes/module-importer": { 338 | "version": "1.0.1", 339 | "resolved": "https://registry.npmjs.org/@humanwhocodes/module-importer/-/module-importer-1.0.1.tgz", 340 | "integrity": "sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA==", 341 | "dev": true, 342 | "engines": { 343 | "node": ">=12.22" 344 | }, 345 | "funding": { 346 | "type": "github", 347 | "url": "https://github.com/sponsors/nzakas" 348 | } 349 | }, 350 | "node_modules/@humanwhocodes/retry": { 351 | "version": "0.4.2", 352 | "resolved": "https://registry.npmjs.org/@humanwhocodes/retry/-/retry-0.4.2.tgz", 353 | "integrity": "sha512-xeO57FpIu4p1Ri3Jq/EXq4ClRm86dVF2z/+kvFnyqVYRavTZmaFaUBbWCOuuTh0o/g7DSsk6kc2vrS4Vl5oPOQ==", 354 | "dev": true, 355 | "license": "Apache-2.0", 356 | "engines": { 357 | "node": ">=18.18" 358 | }, 359 | "funding": { 360 | "type": "github", 361 | "url": "https://github.com/sponsors/nzakas" 362 | } 363 | }, 364 | "node_modules/@jridgewell/sourcemap-codec": { 365 | "version": "1.5.0", 366 | "resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.5.0.tgz", 367 | "integrity": "sha512-gv3ZRaISU3fjPAgNsriBRqGWQL6quFx04YMPW/zD8XMLsU32mhCCbfbO6KZFLjvYpCZ8zyDEgqsgf+PwPaM7GQ==", 368 | "license": "MIT" 369 | }, 370 | "node_modules/@nodelib/fs.scandir": { 371 | "version": "2.1.5", 372 | "resolved": "https://registry.npmjs.org/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz", 373 | "integrity": "sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==", 374 | "dev": true, 375 | "license": "MIT", 376 | "dependencies": { 377 | "@nodelib/fs.stat": "2.0.5", 378 | "run-parallel": "^1.1.9" 379 | }, 380 | "engines": { 381 | "node": ">= 8" 382 | } 383 | }, 384 | "node_modules/@nodelib/fs.stat": { 385 | "version": "2.0.5", 386 | "resolved": "https://registry.npmjs.org/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz", 387 | "integrity": "sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==", 388 | "dev": true, 389 | "license": "MIT", 390 | "engines": { 391 | "node": ">= 8" 392 | } 393 | }, 394 | "node_modules/@nodelib/fs.walk": { 395 | "version": "1.2.8", 396 | "resolved": "https://registry.npmjs.org/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz", 397 | "integrity": "sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==", 398 | "dev": true, 399 | "license": "MIT", 400 | "dependencies": { 401 | "@nodelib/fs.scandir": "2.1.5", 402 | "fastq": "^1.6.0" 403 | }, 404 | "engines": { 405 | "node": ">= 8" 406 | } 407 | }, 408 | "node_modules/@pkgr/core": { 409 | "version": "0.1.1", 410 | "resolved": "https://registry.npmjs.org/@pkgr/core/-/core-0.1.1.tgz", 411 | "integrity": "sha512-cq8o4cWH0ibXh9VGi5P20Tu9XF/0fFXl9EUinr9QfTM7a7p0oTA4iJRCQWppXR1Pg8dSM0UCItCkPwsk9qWWYA==", 412 | "dev": true, 413 | "license": "MIT", 414 | "engines": { 415 | "node": "^12.20.0 || ^14.18.0 || >=16.0.0" 416 | }, 417 | "funding": { 418 | "url": "https://opencollective.com/unts" 419 | } 420 | }, 421 | "node_modules/@rollup/rollup-darwin-arm64": { 422 | "version": "4.34.8", 423 | "resolved": "https://registry.npmjs.org/@rollup/rollup-darwin-arm64/-/rollup-darwin-arm64-4.34.8.tgz", 424 | "integrity": "sha512-02rVdZ5tgdUNRxIUrFdcMBZQoaPMrxtwSb+/hOfBdqkatYHR3lZ2A2EGyHq2sGOd0Owk80oV3snlDASC24He3Q==", 425 | "cpu": [ 426 | "arm64" 427 | ], 428 | "dev": true, 429 | "license": "MIT", 430 | "optional": true, 431 | "os": [ 432 | "darwin" 433 | ] 434 | }, 435 | "node_modules/@rushstack/eslint-patch": { 436 | "version": "1.10.5", 437 | "resolved": "https://registry.npmjs.org/@rushstack/eslint-patch/-/eslint-patch-1.10.5.tgz", 438 | "integrity": "sha512-kkKUDVlII2DQiKy7UstOR1ErJP8kUKAQ4oa+SQtM0K+lPdmmjj0YnnxBgtTVYH7mUKtbsxeFC9y0AmK7Yb78/A==", 439 | "dev": true, 440 | "license": "MIT" 441 | }, 442 | "node_modules/@tsconfig/node20": { 443 | "version": "20.1.4", 444 | "resolved": "https://registry.npmjs.org/@tsconfig/node20/-/node20-20.1.4.tgz", 445 | "integrity": "sha512-sqgsT69YFeLWf5NtJ4Xq/xAF8p4ZQHlmGW74Nu2tD4+g5fAsposc4ZfaaPixVu4y01BEiDCWLRDCvDM5JOsRxg==", 446 | "dev": true 447 | }, 448 | "node_modules/@types/estree": { 449 | "version": "1.0.6", 450 | "resolved": "https://registry.npmjs.org/@types/estree/-/estree-1.0.6.tgz", 451 | "integrity": "sha512-AYnb1nQyY49te+VRAVgmzfcgjYS91mY5P0TKUDCLEM+gNnA+3T6rWITXRLYCpahpqSQbN5cE+gHpnPyXjHWxcw==", 452 | "dev": true, 453 | "license": "MIT" 454 | }, 455 | "node_modules/@types/json-schema": { 456 | "version": "7.0.15", 457 | "resolved": "https://registry.npmjs.org/@types/json-schema/-/json-schema-7.0.15.tgz", 458 | "integrity": "sha512-5+fP8P8MFNC+AyZCDxrB2pkZFPGzqQWUzpSeuuVLvm8VMcorNYavBqoFcxK8bQz4Qsbn4oUEEem4wDLfcysGHA==", 459 | "dev": true, 460 | "license": "MIT" 461 | }, 462 | "node_modules/@types/node": { 463 | "version": "22.13.5", 464 | "resolved": "https://registry.npmjs.org/@types/node/-/node-22.13.5.tgz", 465 | "integrity": "sha512-+lTU0PxZXn0Dr1NBtC7Y8cR21AJr87dLLU953CWA6pMxxv/UDc7jYAY90upcrie1nRcD6XNG5HOYEDtgW5TxAg==", 466 | "dev": true, 467 | "license": "MIT", 468 | "dependencies": { 469 | "undici-types": "~6.20.0" 470 | } 471 | }, 472 | "node_modules/@typescript-eslint/eslint-plugin": { 473 | "version": "8.25.0", 474 | "resolved": "https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-8.25.0.tgz", 475 | "integrity": "sha512-VM7bpzAe7JO/BFf40pIT1lJqS/z1F8OaSsUB3rpFJucQA4cOSuH2RVVVkFULN+En0Djgr29/jb4EQnedUo95KA==", 476 | "dev": true, 477 | "license": "MIT", 478 | "dependencies": { 479 | "@eslint-community/regexpp": "^4.10.0", 480 | "@typescript-eslint/scope-manager": "8.25.0", 481 | "@typescript-eslint/type-utils": "8.25.0", 482 | "@typescript-eslint/utils": "8.25.0", 483 | "@typescript-eslint/visitor-keys": "8.25.0", 484 | "graphemer": "^1.4.0", 485 | "ignore": "^5.3.1", 486 | "natural-compare": "^1.4.0", 487 | "ts-api-utils": "^2.0.1" 488 | }, 489 | "engines": { 490 | "node": "^18.18.0 || ^20.9.0 || >=21.1.0" 491 | }, 492 | "funding": { 493 | "type": "opencollective", 494 | "url": "https://opencollective.com/typescript-eslint" 495 | }, 496 | "peerDependencies": { 497 | "@typescript-eslint/parser": "^8.0.0 || ^8.0.0-alpha.0", 498 | "eslint": "^8.57.0 || ^9.0.0", 499 | "typescript": ">=4.8.4 <5.8.0" 500 | } 501 | }, 502 | "node_modules/@typescript-eslint/parser": { 503 | "version": "8.25.0", 504 | "resolved": "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-8.25.0.tgz", 505 | "integrity": "sha512-4gbs64bnbSzu4FpgMiQ1A+D+urxkoJk/kqlDJ2W//5SygaEiAP2B4GoS7TEdxgwol2el03gckFV9lJ4QOMiiHg==", 506 | "dev": true, 507 | "license": "MIT", 508 | "dependencies": { 509 | "@typescript-eslint/scope-manager": "8.25.0", 510 | "@typescript-eslint/types": "8.25.0", 511 | "@typescript-eslint/typescript-estree": "8.25.0", 512 | "@typescript-eslint/visitor-keys": "8.25.0", 513 | "debug": "^4.3.4" 514 | }, 515 | "engines": { 516 | "node": "^18.18.0 || ^20.9.0 || >=21.1.0" 517 | }, 518 | "funding": { 519 | "type": "opencollective", 520 | "url": "https://opencollective.com/typescript-eslint" 521 | }, 522 | "peerDependencies": { 523 | "eslint": "^8.57.0 || ^9.0.0", 524 | "typescript": ">=4.8.4 <5.8.0" 525 | } 526 | }, 527 | "node_modules/@typescript-eslint/scope-manager": { 528 | "version": "8.25.0", 529 | "resolved": "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-8.25.0.tgz", 530 | "integrity": "sha512-6PPeiKIGbgStEyt4NNXa2ru5pMzQ8OYKO1hX1z53HMomrmiSB+R5FmChgQAP1ro8jMtNawz+TRQo/cSXrauTpg==", 531 | "dev": true, 532 | "license": "MIT", 533 | "dependencies": { 534 | "@typescript-eslint/types": "8.25.0", 535 | "@typescript-eslint/visitor-keys": "8.25.0" 536 | }, 537 | "engines": { 538 | "node": "^18.18.0 || ^20.9.0 || >=21.1.0" 539 | }, 540 | "funding": { 541 | "type": "opencollective", 542 | "url": "https://opencollective.com/typescript-eslint" 543 | } 544 | }, 545 | "node_modules/@typescript-eslint/type-utils": { 546 | "version": "8.25.0", 547 | "resolved": "https://registry.npmjs.org/@typescript-eslint/type-utils/-/type-utils-8.25.0.tgz", 548 | "integrity": "sha512-d77dHgHWnxmXOPJuDWO4FDWADmGQkN5+tt6SFRZz/RtCWl4pHgFl3+WdYCn16+3teG09DY6XtEpf3gGD0a186g==", 549 | "dev": true, 550 | "license": "MIT", 551 | "dependencies": { 552 | "@typescript-eslint/typescript-estree": "8.25.0", 553 | "@typescript-eslint/utils": "8.25.0", 554 | "debug": "^4.3.4", 555 | "ts-api-utils": "^2.0.1" 556 | }, 557 | "engines": { 558 | "node": "^18.18.0 || ^20.9.0 || >=21.1.0" 559 | }, 560 | "funding": { 561 | "type": "opencollective", 562 | "url": "https://opencollective.com/typescript-eslint" 563 | }, 564 | "peerDependencies": { 565 | "eslint": "^8.57.0 || ^9.0.0", 566 | "typescript": ">=4.8.4 <5.8.0" 567 | } 568 | }, 569 | "node_modules/@typescript-eslint/types": { 570 | "version": "8.25.0", 571 | "resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-8.25.0.tgz", 572 | "integrity": "sha512-+vUe0Zb4tkNgznQwicsvLUJgZIRs6ITeWSCclX1q85pR1iOiaj+4uZJIUp//Z27QWu5Cseiw3O3AR8hVpax7Aw==", 573 | "dev": true, 574 | "license": "MIT", 575 | "engines": { 576 | "node": "^18.18.0 || ^20.9.0 || >=21.1.0" 577 | }, 578 | "funding": { 579 | "type": "opencollective", 580 | "url": "https://opencollective.com/typescript-eslint" 581 | } 582 | }, 583 | "node_modules/@typescript-eslint/typescript-estree": { 584 | "version": "8.25.0", 585 | "resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-8.25.0.tgz", 586 | "integrity": "sha512-ZPaiAKEZ6Blt/TPAx5Ot0EIB/yGtLI2EsGoY6F7XKklfMxYQyvtL+gT/UCqkMzO0BVFHLDlzvFqQzurYahxv9Q==", 587 | "dev": true, 588 | "license": "MIT", 589 | "dependencies": { 590 | "@typescript-eslint/types": "8.25.0", 591 | "@typescript-eslint/visitor-keys": "8.25.0", 592 | "debug": "^4.3.4", 593 | "fast-glob": "^3.3.2", 594 | "is-glob": "^4.0.3", 595 | "minimatch": "^9.0.4", 596 | "semver": "^7.6.0", 597 | "ts-api-utils": "^2.0.1" 598 | }, 599 | "engines": { 600 | "node": "^18.18.0 || ^20.9.0 || >=21.1.0" 601 | }, 602 | "funding": { 603 | "type": "opencollective", 604 | "url": "https://opencollective.com/typescript-eslint" 605 | }, 606 | "peerDependencies": { 607 | "typescript": ">=4.8.4 <5.8.0" 608 | } 609 | }, 610 | "node_modules/@typescript-eslint/utils": { 611 | "version": "8.25.0", 612 | "resolved": "https://registry.npmjs.org/@typescript-eslint/utils/-/utils-8.25.0.tgz", 613 | "integrity": "sha512-syqRbrEv0J1wywiLsK60XzHnQe/kRViI3zwFALrNEgnntn1l24Ra2KvOAWwWbWZ1lBZxZljPDGOq967dsl6fkA==", 614 | "dev": true, 615 | "license": "MIT", 616 | "dependencies": { 617 | "@eslint-community/eslint-utils": "^4.4.0", 618 | "@typescript-eslint/scope-manager": "8.25.0", 619 | "@typescript-eslint/types": "8.25.0", 620 | "@typescript-eslint/typescript-estree": "8.25.0" 621 | }, 622 | "engines": { 623 | "node": "^18.18.0 || ^20.9.0 || >=21.1.0" 624 | }, 625 | "funding": { 626 | "type": "opencollective", 627 | "url": "https://opencollective.com/typescript-eslint" 628 | }, 629 | "peerDependencies": { 630 | "eslint": "^8.57.0 || ^9.0.0", 631 | "typescript": ">=4.8.4 <5.8.0" 632 | } 633 | }, 634 | "node_modules/@typescript-eslint/visitor-keys": { 635 | "version": "8.25.0", 636 | "resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-8.25.0.tgz", 637 | "integrity": "sha512-kCYXKAum9CecGVHGij7muybDfTS2sD3t0L4bJsEZLkyrXUImiCTq1M3LG2SRtOhiHFwMR9wAFplpT6XHYjTkwQ==", 638 | "dev": true, 639 | "license": "MIT", 640 | "dependencies": { 641 | "@typescript-eslint/types": "8.25.0", 642 | "eslint-visitor-keys": "^4.2.0" 643 | }, 644 | "engines": { 645 | "node": "^18.18.0 || ^20.9.0 || >=21.1.0" 646 | }, 647 | "funding": { 648 | "type": "opencollective", 649 | "url": "https://opencollective.com/typescript-eslint" 650 | } 651 | }, 652 | "node_modules/@typescript-eslint/visitor-keys/node_modules/eslint-visitor-keys": { 653 | "version": "4.2.0", 654 | "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-4.2.0.tgz", 655 | "integrity": "sha512-UyLnSehNt62FFhSwjZlHmeokpRK59rcz29j+F1/aDgbkbRTk7wIc9XzdoasMUbRNKDM0qQt/+BJ4BrpFeABemw==", 656 | "dev": true, 657 | "license": "Apache-2.0", 658 | "engines": { 659 | "node": "^18.18.0 || ^20.9.0 || >=21.1.0" 660 | }, 661 | "funding": { 662 | "url": "https://opencollective.com/eslint" 663 | } 664 | }, 665 | "node_modules/@vitejs/plugin-vue": { 666 | "version": "5.2.1", 667 | "resolved": "https://registry.npmjs.org/@vitejs/plugin-vue/-/plugin-vue-5.2.1.tgz", 668 | "integrity": "sha512-cxh314tzaWwOLqVes2gnnCtvBDcM1UMdn+iFR+UjAn411dPT3tOmqrJjbMd7koZpMAmBM/GqeV4n9ge7JSiJJQ==", 669 | "dev": true, 670 | "license": "MIT", 671 | "engines": { 672 | "node": "^18.0.0 || >=20.0.0" 673 | }, 674 | "peerDependencies": { 675 | "vite": "^5.0.0 || ^6.0.0", 676 | "vue": "^3.2.25" 677 | } 678 | }, 679 | "node_modules/@volar/language-core": { 680 | "version": "2.4.11", 681 | "resolved": "https://registry.npmjs.org/@volar/language-core/-/language-core-2.4.11.tgz", 682 | "integrity": "sha512-lN2C1+ByfW9/JRPpqScuZt/4OrUUse57GLI6TbLgTIqBVemdl1wNcZ1qYGEo2+Gw8coYLgCy7SuKqn6IrQcQgg==", 683 | "dev": true, 684 | "license": "MIT", 685 | "dependencies": { 686 | "@volar/source-map": "2.4.11" 687 | } 688 | }, 689 | "node_modules/@volar/source-map": { 690 | "version": "2.4.11", 691 | "resolved": "https://registry.npmjs.org/@volar/source-map/-/source-map-2.4.11.tgz", 692 | "integrity": "sha512-ZQpmafIGvaZMn/8iuvCFGrW3smeqkq/IIh9F1SdSx9aUl0J4Iurzd6/FhmjNO5g2ejF3rT45dKskgXWiofqlZQ==", 693 | "dev": true, 694 | "license": "MIT" 695 | }, 696 | "node_modules/@volar/typescript": { 697 | "version": "2.4.11", 698 | "resolved": "https://registry.npmjs.org/@volar/typescript/-/typescript-2.4.11.tgz", 699 | "integrity": "sha512-2DT+Tdh88Spp5PyPbqhyoYavYCPDsqbHLFwcUI9K1NlY1YgUJvujGdrqUp0zWxnW7KWNTr3xSpMuv2WnaTKDAw==", 700 | "dev": true, 701 | "license": "MIT", 702 | "dependencies": { 703 | "@volar/language-core": "2.4.11", 704 | "path-browserify": "^1.0.1", 705 | "vscode-uri": "^3.0.8" 706 | } 707 | }, 708 | "node_modules/@vue/compiler-core": { 709 | "version": "3.5.13", 710 | "resolved": "https://registry.npmjs.org/@vue/compiler-core/-/compiler-core-3.5.13.tgz", 711 | "integrity": "sha512-oOdAkwqUfW1WqpwSYJce06wvt6HljgY3fGeM9NcVA1HaYOij3mZG9Rkysn0OHuyUAGMbEbARIpsG+LPVlBJ5/Q==", 712 | "license": "MIT", 713 | "dependencies": { 714 | "@babel/parser": "^7.25.3", 715 | "@vue/shared": "3.5.13", 716 | "entities": "^4.5.0", 717 | "estree-walker": "^2.0.2", 718 | "source-map-js": "^1.2.0" 719 | } 720 | }, 721 | "node_modules/@vue/compiler-dom": { 722 | "version": "3.5.13", 723 | "resolved": "https://registry.npmjs.org/@vue/compiler-dom/-/compiler-dom-3.5.13.tgz", 724 | "integrity": "sha512-ZOJ46sMOKUjO3e94wPdCzQ6P1Lx/vhp2RSvfaab88Ajexs0AHeV0uasYhi99WPaogmBlRHNRuly8xV75cNTMDA==", 725 | "license": "MIT", 726 | "dependencies": { 727 | "@vue/compiler-core": "3.5.13", 728 | "@vue/shared": "3.5.13" 729 | } 730 | }, 731 | "node_modules/@vue/compiler-sfc": { 732 | "version": "3.5.13", 733 | "resolved": "https://registry.npmjs.org/@vue/compiler-sfc/-/compiler-sfc-3.5.13.tgz", 734 | "integrity": "sha512-6VdaljMpD82w6c2749Zhf5T9u5uLBWKnVue6XWxprDobftnletJ8+oel7sexFfM3qIxNmVE7LSFGTpv6obNyaQ==", 735 | "license": "MIT", 736 | "dependencies": { 737 | "@babel/parser": "^7.25.3", 738 | "@vue/compiler-core": "3.5.13", 739 | "@vue/compiler-dom": "3.5.13", 740 | "@vue/compiler-ssr": "3.5.13", 741 | "@vue/shared": "3.5.13", 742 | "estree-walker": "^2.0.2", 743 | "magic-string": "^0.30.11", 744 | "postcss": "^8.4.48", 745 | "source-map-js": "^1.2.0" 746 | } 747 | }, 748 | "node_modules/@vue/compiler-ssr": { 749 | "version": "3.5.13", 750 | "resolved": "https://registry.npmjs.org/@vue/compiler-ssr/-/compiler-ssr-3.5.13.tgz", 751 | "integrity": "sha512-wMH6vrYHxQl/IybKJagqbquvxpWCuVYpoUJfCqFZwa/JY1GdATAQ+TgVtgrwwMZ0D07QhA99rs/EAAWfvG6KpA==", 752 | "license": "MIT", 753 | "dependencies": { 754 | "@vue/compiler-dom": "3.5.13", 755 | "@vue/shared": "3.5.13" 756 | } 757 | }, 758 | "node_modules/@vue/compiler-vue2": { 759 | "version": "2.7.16", 760 | "resolved": "https://registry.npmjs.org/@vue/compiler-vue2/-/compiler-vue2-2.7.16.tgz", 761 | "integrity": "sha512-qYC3Psj9S/mfu9uVi5WvNZIzq+xnXMhOwbTFKKDD7b1lhpnn71jXSFdTQ+WsIEk0ONCd7VV2IMm7ONl6tbQ86A==", 762 | "dev": true, 763 | "license": "MIT", 764 | "dependencies": { 765 | "de-indent": "^1.0.2", 766 | "he": "^1.2.0" 767 | } 768 | }, 769 | "node_modules/@vue/devtools-api": { 770 | "version": "7.7.2", 771 | "resolved": "https://registry.npmjs.org/@vue/devtools-api/-/devtools-api-7.7.2.tgz", 772 | "integrity": "sha512-1syn558KhyN+chO5SjlZIwJ8bV/bQ1nOVTG66t2RbG66ZGekyiYNmRO7X9BJCXQqPsFHlnksqvPhce2qpzxFnA==", 773 | "license": "MIT", 774 | "dependencies": { 775 | "@vue/devtools-kit": "^7.7.2" 776 | } 777 | }, 778 | "node_modules/@vue/devtools-kit": { 779 | "version": "7.7.2", 780 | "resolved": "https://registry.npmjs.org/@vue/devtools-kit/-/devtools-kit-7.7.2.tgz", 781 | "integrity": "sha512-CY0I1JH3Z8PECbn6k3TqM1Bk9ASWxeMtTCvZr7vb+CHi+X/QwQm5F1/fPagraamKMAHVfuuCbdcnNg1A4CYVWQ==", 782 | "license": "MIT", 783 | "dependencies": { 784 | "@vue/devtools-shared": "^7.7.2", 785 | "birpc": "^0.2.19", 786 | "hookable": "^5.5.3", 787 | "mitt": "^3.0.1", 788 | "perfect-debounce": "^1.0.0", 789 | "speakingurl": "^14.0.1", 790 | "superjson": "^2.2.1" 791 | } 792 | }, 793 | "node_modules/@vue/devtools-shared": { 794 | "version": "7.7.2", 795 | "resolved": "https://registry.npmjs.org/@vue/devtools-shared/-/devtools-shared-7.7.2.tgz", 796 | "integrity": "sha512-uBFxnp8gwW2vD6FrJB8JZLUzVb6PNRG0B0jBnHsOH8uKyva2qINY8PTF5Te4QlTbMDqU5K6qtJDr6cNsKWhbOA==", 797 | "license": "MIT", 798 | "dependencies": { 799 | "rfdc": "^1.4.1" 800 | } 801 | }, 802 | "node_modules/@vue/eslint-config-prettier": { 803 | "version": "10.2.0", 804 | "resolved": "https://registry.npmjs.org/@vue/eslint-config-prettier/-/eslint-config-prettier-10.2.0.tgz", 805 | "integrity": "sha512-GL3YBLwv/+b86yHcNNfPJxOTtVFJ4Mbc9UU3zR+KVoG7SwGTjPT+32fXamscNumElhcpXW3mT0DgzS9w32S7Bw==", 806 | "dev": true, 807 | "license": "MIT", 808 | "dependencies": { 809 | "eslint-config-prettier": "^10.0.1", 810 | "eslint-plugin-prettier": "^5.2.2" 811 | }, 812 | "peerDependencies": { 813 | "eslint": ">= 8.21.0", 814 | "prettier": ">= 3.0.0" 815 | } 816 | }, 817 | "node_modules/@vue/eslint-config-typescript": { 818 | "version": "14.4.0", 819 | "resolved": "https://registry.npmjs.org/@vue/eslint-config-typescript/-/eslint-config-typescript-14.4.0.tgz", 820 | "integrity": "sha512-daU+eAekEeVz3CReE4PRW25fe+OJDKwE28jHN6LimDEnuFMbJ6H4WGogEpNof276wVP6UvzOeJQfLFjB5mW29A==", 821 | "dev": true, 822 | "license": "MIT", 823 | "dependencies": { 824 | "@typescript-eslint/utils": "^8.23.0", 825 | "fast-glob": "^3.3.3", 826 | "typescript-eslint": "^8.23.0", 827 | "vue-eslint-parser": "^9.4.3" 828 | }, 829 | "engines": { 830 | "node": "^18.18.0 || ^20.9.0 || >=21.1.0" 831 | }, 832 | "peerDependencies": { 833 | "eslint": "^9.10.0", 834 | "eslint-plugin-vue": "^9.28.0", 835 | "typescript": ">=4.8.4" 836 | }, 837 | "peerDependenciesMeta": { 838 | "typescript": { 839 | "optional": true 840 | } 841 | } 842 | }, 843 | "node_modules/@vue/language-core": { 844 | "version": "2.2.4", 845 | "resolved": "https://registry.npmjs.org/@vue/language-core/-/language-core-2.2.4.tgz", 846 | "integrity": "sha512-eGGdw7eWUwdIn9Fy/irJ7uavCGfgemuHQABgJ/hU1UgZFnbTg9VWeXvHQdhY+2SPQZWJqWXvRWIg67t4iWEa+Q==", 847 | "dev": true, 848 | "license": "MIT", 849 | "dependencies": { 850 | "@volar/language-core": "~2.4.11", 851 | "@vue/compiler-dom": "^3.5.0", 852 | "@vue/compiler-vue2": "^2.7.16", 853 | "@vue/shared": "^3.5.0", 854 | "alien-signals": "^1.0.3", 855 | "minimatch": "^9.0.3", 856 | "muggle-string": "^0.4.1", 857 | "path-browserify": "^1.0.1" 858 | }, 859 | "peerDependencies": { 860 | "typescript": "*" 861 | }, 862 | "peerDependenciesMeta": { 863 | "typescript": { 864 | "optional": true 865 | } 866 | } 867 | }, 868 | "node_modules/@vue/reactivity": { 869 | "version": "3.5.13", 870 | "resolved": "https://registry.npmjs.org/@vue/reactivity/-/reactivity-3.5.13.tgz", 871 | "integrity": "sha512-NaCwtw8o48B9I6L1zl2p41OHo/2Z4wqYGGIK1Khu5T7yxrn+ATOixn/Udn2m+6kZKB/J7cuT9DbWWhRxqixACg==", 872 | "license": "MIT", 873 | "dependencies": { 874 | "@vue/shared": "3.5.13" 875 | } 876 | }, 877 | "node_modules/@vue/runtime-core": { 878 | "version": "3.5.13", 879 | "resolved": "https://registry.npmjs.org/@vue/runtime-core/-/runtime-core-3.5.13.tgz", 880 | "integrity": "sha512-Fj4YRQ3Az0WTZw1sFe+QDb0aXCerigEpw418pw1HBUKFtnQHWzwojaukAs2X/c9DQz4MQ4bsXTGlcpGxU/RCIw==", 881 | "license": "MIT", 882 | "dependencies": { 883 | "@vue/reactivity": "3.5.13", 884 | "@vue/shared": "3.5.13" 885 | } 886 | }, 887 | "node_modules/@vue/runtime-dom": { 888 | "version": "3.5.13", 889 | "resolved": "https://registry.npmjs.org/@vue/runtime-dom/-/runtime-dom-3.5.13.tgz", 890 | "integrity": "sha512-dLaj94s93NYLqjLiyFzVs9X6dWhTdAlEAciC3Moq7gzAc13VJUdCnjjRurNM6uTLFATRHexHCTu/Xp3eW6yoog==", 891 | "license": "MIT", 892 | "dependencies": { 893 | "@vue/reactivity": "3.5.13", 894 | "@vue/runtime-core": "3.5.13", 895 | "@vue/shared": "3.5.13", 896 | "csstype": "^3.1.3" 897 | } 898 | }, 899 | "node_modules/@vue/server-renderer": { 900 | "version": "3.5.13", 901 | "resolved": "https://registry.npmjs.org/@vue/server-renderer/-/server-renderer-3.5.13.tgz", 902 | "integrity": "sha512-wAi4IRJV/2SAW3htkTlB+dHeRmpTiVIK1OGLWV1yeStVSebSQQOwGwIq0D3ZIoBj2C2qpgz5+vX9iEBkTdk5YA==", 903 | "license": "MIT", 904 | "dependencies": { 905 | "@vue/compiler-ssr": "3.5.13", 906 | "@vue/shared": "3.5.13" 907 | }, 908 | "peerDependencies": { 909 | "vue": "3.5.13" 910 | } 911 | }, 912 | "node_modules/@vue/shared": { 913 | "version": "3.5.13", 914 | "resolved": "https://registry.npmjs.org/@vue/shared/-/shared-3.5.13.tgz", 915 | "integrity": "sha512-/hnE/qP5ZoGpol0a5mDi45bOd7t3tjYJBjsgCsivow7D48cJeV5l05RD82lPqi7gRiphZM37rnhW1l6ZoCNNnQ==", 916 | "license": "MIT" 917 | }, 918 | "node_modules/@vue/tsconfig": { 919 | "version": "0.7.0", 920 | "resolved": "https://registry.npmjs.org/@vue/tsconfig/-/tsconfig-0.7.0.tgz", 921 | "integrity": "sha512-ku2uNz5MaZ9IerPPUyOHzyjhXoX2kVJaVf7hL315DC17vS6IiZRmmCPfggNbU16QTvM80+uYYy3eYJB59WCtvg==", 922 | "dev": true, 923 | "license": "MIT", 924 | "peerDependencies": { 925 | "typescript": "5.x", 926 | "vue": "^3.4.0" 927 | }, 928 | "peerDependenciesMeta": { 929 | "typescript": { 930 | "optional": true 931 | }, 932 | "vue": { 933 | "optional": true 934 | } 935 | } 936 | }, 937 | "node_modules/acorn": { 938 | "version": "8.14.0", 939 | "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.14.0.tgz", 940 | "integrity": "sha512-cl669nCJTZBsL97OF4kUQm5g5hC2uihk0NxY3WENAC0TYdILVkAyHymAntgxGkl7K+t0cXIrH5siy5S4XkFycA==", 941 | "dev": true, 942 | "license": "MIT", 943 | "bin": { 944 | "acorn": "bin/acorn" 945 | }, 946 | "engines": { 947 | "node": ">=0.4.0" 948 | } 949 | }, 950 | "node_modules/acorn-jsx": { 951 | "version": "5.3.2", 952 | "resolved": "https://registry.npmjs.org/acorn-jsx/-/acorn-jsx-5.3.2.tgz", 953 | "integrity": "sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==", 954 | "dev": true, 955 | "peerDependencies": { 956 | "acorn": "^6.0.0 || ^7.0.0 || ^8.0.0" 957 | } 958 | }, 959 | "node_modules/ajv": { 960 | "version": "6.12.6", 961 | "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz", 962 | "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", 963 | "dev": true, 964 | "license": "MIT", 965 | "dependencies": { 966 | "fast-deep-equal": "^3.1.1", 967 | "fast-json-stable-stringify": "^2.0.0", 968 | "json-schema-traverse": "^0.4.1", 969 | "uri-js": "^4.2.2" 970 | }, 971 | "funding": { 972 | "type": "github", 973 | "url": "https://github.com/sponsors/epoberezkin" 974 | } 975 | }, 976 | "node_modules/alien-signals": { 977 | "version": "1.0.4", 978 | "resolved": "https://registry.npmjs.org/alien-signals/-/alien-signals-1.0.4.tgz", 979 | "integrity": "sha512-DJqqQD3XcsaQcQ1s+iE2jDUZmmQpXwHiR6fCAim/w87luaW+vmLY8fMlrdkmRwzaFXhkxf3rqPCR59tKVv1MDw==", 980 | "dev": true, 981 | "license": "MIT" 982 | }, 983 | "node_modules/ansi-styles": { 984 | "version": "4.3.0", 985 | "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", 986 | "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", 987 | "dev": true, 988 | "dependencies": { 989 | "color-convert": "^2.0.1" 990 | }, 991 | "engines": { 992 | "node": ">=8" 993 | }, 994 | "funding": { 995 | "url": "https://github.com/chalk/ansi-styles?sponsor=1" 996 | } 997 | }, 998 | "node_modules/argparse": { 999 | "version": "2.0.1", 1000 | "resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz", 1001 | "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==", 1002 | "dev": true, 1003 | "license": "Python-2.0" 1004 | }, 1005 | "node_modules/asap": { 1006 | "version": "2.0.6", 1007 | "resolved": "https://registry.npmjs.org/asap/-/asap-2.0.6.tgz", 1008 | "integrity": "sha512-BSHWgDSAiKs50o2Re8ppvp3seVHXSRM44cdSsT9FfNEUUZLOGWVCsiWaRPWM1Znn+mqZ1OfVZ3z3DWEzSp7hRA==", 1009 | "dev": true 1010 | }, 1011 | "node_modules/assert-never": { 1012 | "version": "1.2.1", 1013 | "resolved": "https://registry.npmjs.org/assert-never/-/assert-never-1.2.1.tgz", 1014 | "integrity": "sha512-TaTivMB6pYI1kXwrFlEhLeGfOqoDNdTxjCdwRfFFkEA30Eu+k48W34nlok2EYWJfFFzqaEmichdNM7th6M5HNw==", 1015 | "dev": true 1016 | }, 1017 | "node_modules/babel-walk": { 1018 | "version": "3.0.0-canary-5", 1019 | "resolved": "https://registry.npmjs.org/babel-walk/-/babel-walk-3.0.0-canary-5.tgz", 1020 | "integrity": "sha512-GAwkz0AihzY5bkwIY5QDR+LvsRQgB/B+1foMPvi0FZPMl5fjD7ICiznUiBdLYMH1QYe6vqu4gWYytZOccLouFw==", 1021 | "dev": true, 1022 | "dependencies": { 1023 | "@babel/types": "^7.9.6" 1024 | }, 1025 | "engines": { 1026 | "node": ">= 10.0.0" 1027 | } 1028 | }, 1029 | "node_modules/balanced-match": { 1030 | "version": "1.0.2", 1031 | "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz", 1032 | "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==", 1033 | "dev": true 1034 | }, 1035 | "node_modules/birpc": { 1036 | "version": "0.2.19", 1037 | "resolved": "https://registry.npmjs.org/birpc/-/birpc-0.2.19.tgz", 1038 | "integrity": "sha512-5WeXXAvTmitV1RqJFppT5QtUiz2p1mRSYU000Jkft5ZUCLJIk4uQriYNO50HknxKwM6jd8utNc66K1qGIwwWBQ==", 1039 | "license": "MIT", 1040 | "funding": { 1041 | "url": "https://github.com/sponsors/antfu" 1042 | } 1043 | }, 1044 | "node_modules/boolbase": { 1045 | "version": "1.0.0", 1046 | "resolved": "https://registry.npmjs.org/boolbase/-/boolbase-1.0.0.tgz", 1047 | "integrity": "sha512-JZOSA7Mo9sNGB8+UjSgzdLtokWAky1zbztM3WRLCbZ70/3cTANmQmOdR7y2g+J0e2WXywy1yS468tY+IruqEww==", 1048 | "dev": true 1049 | }, 1050 | "node_modules/brace-expansion": { 1051 | "version": "2.0.1", 1052 | "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz", 1053 | "integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==", 1054 | "dev": true, 1055 | "dependencies": { 1056 | "balanced-match": "^1.0.0" 1057 | } 1058 | }, 1059 | "node_modules/braces": { 1060 | "version": "3.0.3", 1061 | "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.3.tgz", 1062 | "integrity": "sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==", 1063 | "dev": true, 1064 | "license": "MIT", 1065 | "dependencies": { 1066 | "fill-range": "^7.1.1" 1067 | }, 1068 | "engines": { 1069 | "node": ">=8" 1070 | } 1071 | }, 1072 | "node_modules/call-bind": { 1073 | "version": "1.0.7", 1074 | "resolved": "https://registry.npmjs.org/call-bind/-/call-bind-1.0.7.tgz", 1075 | "integrity": "sha512-GHTSNSYICQ7scH7sZ+M2rFopRoLh8t2bLSW6BbgrtLsahOIB5iyAVJf9GjWK3cYTDaMj4XdBpM1cA6pIS0Kv2w==", 1076 | "dev": true, 1077 | "dependencies": { 1078 | "es-define-property": "^1.0.0", 1079 | "es-errors": "^1.3.0", 1080 | "function-bind": "^1.1.2", 1081 | "get-intrinsic": "^1.2.4", 1082 | "set-function-length": "^1.2.1" 1083 | }, 1084 | "engines": { 1085 | "node": ">= 0.4" 1086 | }, 1087 | "funding": { 1088 | "url": "https://github.com/sponsors/ljharb" 1089 | } 1090 | }, 1091 | "node_modules/callsites": { 1092 | "version": "3.1.0", 1093 | "resolved": "https://registry.npmjs.org/callsites/-/callsites-3.1.0.tgz", 1094 | "integrity": "sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==", 1095 | "dev": true, 1096 | "license": "MIT", 1097 | "engines": { 1098 | "node": ">=6" 1099 | } 1100 | }, 1101 | "node_modules/chalk": { 1102 | "version": "4.1.2", 1103 | "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", 1104 | "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", 1105 | "dev": true, 1106 | "dependencies": { 1107 | "ansi-styles": "^4.1.0", 1108 | "supports-color": "^7.1.0" 1109 | }, 1110 | "engines": { 1111 | "node": ">=10" 1112 | }, 1113 | "funding": { 1114 | "url": "https://github.com/chalk/chalk?sponsor=1" 1115 | } 1116 | }, 1117 | "node_modules/character-parser": { 1118 | "version": "2.2.0", 1119 | "resolved": "https://registry.npmjs.org/character-parser/-/character-parser-2.2.0.tgz", 1120 | "integrity": "sha512-+UqJQjFEFaTAs3bNsF2j2kEN1baG/zghZbdqoYEDxGZtJo9LBzl1A+m0D4n3qKx8N2FNv8/Xp6yV9mQmBuptaw==", 1121 | "dev": true, 1122 | "dependencies": { 1123 | "is-regex": "^1.0.3" 1124 | } 1125 | }, 1126 | "node_modules/color-convert": { 1127 | "version": "2.0.1", 1128 | "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", 1129 | "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", 1130 | "dev": true, 1131 | "dependencies": { 1132 | "color-name": "~1.1.4" 1133 | }, 1134 | "engines": { 1135 | "node": ">=7.0.0" 1136 | } 1137 | }, 1138 | "node_modules/color-name": { 1139 | "version": "1.1.4", 1140 | "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", 1141 | "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", 1142 | "dev": true 1143 | }, 1144 | "node_modules/concat-map": { 1145 | "version": "0.0.1", 1146 | "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", 1147 | "integrity": "sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==", 1148 | "dev": true 1149 | }, 1150 | "node_modules/constantinople": { 1151 | "version": "4.0.1", 1152 | "resolved": "https://registry.npmjs.org/constantinople/-/constantinople-4.0.1.tgz", 1153 | "integrity": "sha512-vCrqcSIq4//Gx74TXXCGnHpulY1dskqLTFGDmhrGxzeXL8lF8kvXv6mpNWlJj1uD4DW23D4ljAqbY4RRaaUZIw==", 1154 | "dev": true, 1155 | "dependencies": { 1156 | "@babel/parser": "^7.6.0", 1157 | "@babel/types": "^7.6.1" 1158 | } 1159 | }, 1160 | "node_modules/copy-anything": { 1161 | "version": "3.0.5", 1162 | "resolved": "https://registry.npmjs.org/copy-anything/-/copy-anything-3.0.5.tgz", 1163 | "integrity": "sha512-yCEafptTtb4bk7GLEQoM8KVJpxAfdBJYaXyzQEgQQQgYrZiDp8SJmGKlYza6CYjEDNstAdNdKA3UuoULlEbS6w==", 1164 | "license": "MIT", 1165 | "dependencies": { 1166 | "is-what": "^4.1.8" 1167 | }, 1168 | "engines": { 1169 | "node": ">=12.13" 1170 | }, 1171 | "funding": { 1172 | "url": "https://github.com/sponsors/mesqueeb" 1173 | } 1174 | }, 1175 | "node_modules/cross-spawn": { 1176 | "version": "7.0.6", 1177 | "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.6.tgz", 1178 | "integrity": "sha512-uV2QOWP2nWzsy2aMp8aRibhi9dlzF5Hgh5SHaB9OiTGEyDTiJJyx0uy51QXdyWbtAHNua4XJzUKca3OzKUd3vA==", 1179 | "dev": true, 1180 | "license": "MIT", 1181 | "dependencies": { 1182 | "path-key": "^3.1.0", 1183 | "shebang-command": "^2.0.0", 1184 | "which": "^2.0.1" 1185 | }, 1186 | "engines": { 1187 | "node": ">= 8" 1188 | } 1189 | }, 1190 | "node_modules/cssesc": { 1191 | "version": "3.0.0", 1192 | "resolved": "https://registry.npmjs.org/cssesc/-/cssesc-3.0.0.tgz", 1193 | "integrity": "sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==", 1194 | "dev": true, 1195 | "bin": { 1196 | "cssesc": "bin/cssesc" 1197 | }, 1198 | "engines": { 1199 | "node": ">=4" 1200 | } 1201 | }, 1202 | "node_modules/csstype": { 1203 | "version": "3.1.3", 1204 | "resolved": "https://registry.npmjs.org/csstype/-/csstype-3.1.3.tgz", 1205 | "integrity": "sha512-M1uQkMl8rQK/szD0LNhtqxIPLpimGm8sOBwU7lLnCpSbTyY3yeU1Vc7l4KT5zT4s/yOxHH5O7tIuuLOCnLADRw==", 1206 | "license": "MIT" 1207 | }, 1208 | "node_modules/de-indent": { 1209 | "version": "1.0.2", 1210 | "resolved": "https://registry.npmjs.org/de-indent/-/de-indent-1.0.2.tgz", 1211 | "integrity": "sha512-e/1zu3xH5MQryN2zdVaF0OrdNLUbvWxzMbi+iNA6Bky7l1RoP8a2fIbRocyHclXt/arDrrR6lL3TqFD9pMQTsg==", 1212 | "dev": true, 1213 | "license": "MIT" 1214 | }, 1215 | "node_modules/debug": { 1216 | "version": "4.3.5", 1217 | "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.5.tgz", 1218 | "integrity": "sha512-pt0bNEmneDIvdL1Xsd9oDQ/wrQRkXDT4AUWlNZNPKvW5x/jyO9VFXkJUP07vQ2upmw5PlaITaPKc31jK13V+jg==", 1219 | "dev": true, 1220 | "dependencies": { 1221 | "ms": "2.1.2" 1222 | }, 1223 | "engines": { 1224 | "node": ">=6.0" 1225 | }, 1226 | "peerDependenciesMeta": { 1227 | "supports-color": { 1228 | "optional": true 1229 | } 1230 | } 1231 | }, 1232 | "node_modules/deep-is": { 1233 | "version": "0.1.4", 1234 | "resolved": "https://registry.npmjs.org/deep-is/-/deep-is-0.1.4.tgz", 1235 | "integrity": "sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==", 1236 | "dev": true 1237 | }, 1238 | "node_modules/define-data-property": { 1239 | "version": "1.1.4", 1240 | "resolved": "https://registry.npmjs.org/define-data-property/-/define-data-property-1.1.4.tgz", 1241 | "integrity": "sha512-rBMvIzlpA8v6E+SJZoo++HAYqsLrkg7MSfIinMPFhmkorw7X+dOXVJQs+QT69zGkzMyfDnIMN2Wid1+NbL3T+A==", 1242 | "dev": true, 1243 | "dependencies": { 1244 | "es-define-property": "^1.0.0", 1245 | "es-errors": "^1.3.0", 1246 | "gopd": "^1.0.1" 1247 | }, 1248 | "engines": { 1249 | "node": ">= 0.4" 1250 | }, 1251 | "funding": { 1252 | "url": "https://github.com/sponsors/ljharb" 1253 | } 1254 | }, 1255 | "node_modules/doctypes": { 1256 | "version": "1.1.0", 1257 | "resolved": "https://registry.npmjs.org/doctypes/-/doctypes-1.1.0.tgz", 1258 | "integrity": "sha512-LLBi6pEqS6Do3EKQ3J0NqHWV5hhb78Pi8vvESYwyOy2c31ZEZVdtitdzsQsKb7878PEERhzUk0ftqGhG6Mz+pQ==", 1259 | "dev": true 1260 | }, 1261 | "node_modules/entities": { 1262 | "version": "4.5.0", 1263 | "resolved": "https://registry.npmjs.org/entities/-/entities-4.5.0.tgz", 1264 | "integrity": "sha512-V0hjH4dGPh9Ao5p0MoRY6BVqtwCjhz6vI5LT8AJ55H+4g9/4vbHx1I54fS0XuclLhDHArPQCiMjDxjaL8fPxhw==", 1265 | "license": "BSD-2-Clause", 1266 | "engines": { 1267 | "node": ">=0.12" 1268 | }, 1269 | "funding": { 1270 | "url": "https://github.com/fb55/entities?sponsor=1" 1271 | } 1272 | }, 1273 | "node_modules/es-define-property": { 1274 | "version": "1.0.0", 1275 | "resolved": "https://registry.npmjs.org/es-define-property/-/es-define-property-1.0.0.tgz", 1276 | "integrity": "sha512-jxayLKShrEqqzJ0eumQbVhTYQM27CfT1T35+gCgDFoL82JLsXqTJ76zv6A0YLOgEnLUMvLzsDsGIrl8NFpT2gQ==", 1277 | "dev": true, 1278 | "dependencies": { 1279 | "get-intrinsic": "^1.2.4" 1280 | }, 1281 | "engines": { 1282 | "node": ">= 0.4" 1283 | } 1284 | }, 1285 | "node_modules/es-errors": { 1286 | "version": "1.3.0", 1287 | "resolved": "https://registry.npmjs.org/es-errors/-/es-errors-1.3.0.tgz", 1288 | "integrity": "sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw==", 1289 | "dev": true, 1290 | "engines": { 1291 | "node": ">= 0.4" 1292 | } 1293 | }, 1294 | "node_modules/esbuild": { 1295 | "version": "0.25.0", 1296 | "resolved": "https://registry.npmjs.org/esbuild/-/esbuild-0.25.0.tgz", 1297 | "integrity": "sha512-BXq5mqc8ltbaN34cDqWuYKyNhX8D/Z0J1xdtdQ8UcIIIyJyz+ZMKUt58tF3SrZ85jcfN/PZYhjR5uDQAYNVbuw==", 1298 | "dev": true, 1299 | "hasInstallScript": true, 1300 | "license": "MIT", 1301 | "bin": { 1302 | "esbuild": "bin/esbuild" 1303 | }, 1304 | "engines": { 1305 | "node": ">=18" 1306 | }, 1307 | "optionalDependencies": { 1308 | "@esbuild/aix-ppc64": "0.25.0", 1309 | "@esbuild/android-arm": "0.25.0", 1310 | "@esbuild/android-arm64": "0.25.0", 1311 | "@esbuild/android-x64": "0.25.0", 1312 | "@esbuild/darwin-arm64": "0.25.0", 1313 | "@esbuild/darwin-x64": "0.25.0", 1314 | "@esbuild/freebsd-arm64": "0.25.0", 1315 | "@esbuild/freebsd-x64": "0.25.0", 1316 | "@esbuild/linux-arm": "0.25.0", 1317 | "@esbuild/linux-arm64": "0.25.0", 1318 | "@esbuild/linux-ia32": "0.25.0", 1319 | "@esbuild/linux-loong64": "0.25.0", 1320 | "@esbuild/linux-mips64el": "0.25.0", 1321 | "@esbuild/linux-ppc64": "0.25.0", 1322 | "@esbuild/linux-riscv64": "0.25.0", 1323 | "@esbuild/linux-s390x": "0.25.0", 1324 | "@esbuild/linux-x64": "0.25.0", 1325 | "@esbuild/netbsd-arm64": "0.25.0", 1326 | "@esbuild/netbsd-x64": "0.25.0", 1327 | "@esbuild/openbsd-arm64": "0.25.0", 1328 | "@esbuild/openbsd-x64": "0.25.0", 1329 | "@esbuild/sunos-x64": "0.25.0", 1330 | "@esbuild/win32-arm64": "0.25.0", 1331 | "@esbuild/win32-ia32": "0.25.0", 1332 | "@esbuild/win32-x64": "0.25.0" 1333 | } 1334 | }, 1335 | "node_modules/escape-string-regexp": { 1336 | "version": "4.0.0", 1337 | "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz", 1338 | "integrity": "sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==", 1339 | "dev": true, 1340 | "engines": { 1341 | "node": ">=10" 1342 | }, 1343 | "funding": { 1344 | "url": "https://github.com/sponsors/sindresorhus" 1345 | } 1346 | }, 1347 | "node_modules/eslint": { 1348 | "version": "9.21.0", 1349 | "resolved": "https://registry.npmjs.org/eslint/-/eslint-9.21.0.tgz", 1350 | "integrity": "sha512-KjeihdFqTPhOMXTt7StsDxriV4n66ueuF/jfPNC3j/lduHwr/ijDwJMsF+wyMJethgiKi5wniIE243vi07d3pg==", 1351 | "dev": true, 1352 | "license": "MIT", 1353 | "dependencies": { 1354 | "@eslint-community/eslint-utils": "^4.2.0", 1355 | "@eslint-community/regexpp": "^4.12.1", 1356 | "@eslint/config-array": "^0.19.2", 1357 | "@eslint/core": "^0.12.0", 1358 | "@eslint/eslintrc": "^3.3.0", 1359 | "@eslint/js": "9.21.0", 1360 | "@eslint/plugin-kit": "^0.2.7", 1361 | "@humanfs/node": "^0.16.6", 1362 | "@humanwhocodes/module-importer": "^1.0.1", 1363 | "@humanwhocodes/retry": "^0.4.2", 1364 | "@types/estree": "^1.0.6", 1365 | "@types/json-schema": "^7.0.15", 1366 | "ajv": "^6.12.4", 1367 | "chalk": "^4.0.0", 1368 | "cross-spawn": "^7.0.6", 1369 | "debug": "^4.3.2", 1370 | "escape-string-regexp": "^4.0.0", 1371 | "eslint-scope": "^8.2.0", 1372 | "eslint-visitor-keys": "^4.2.0", 1373 | "espree": "^10.3.0", 1374 | "esquery": "^1.5.0", 1375 | "esutils": "^2.0.2", 1376 | "fast-deep-equal": "^3.1.3", 1377 | "file-entry-cache": "^8.0.0", 1378 | "find-up": "^5.0.0", 1379 | "glob-parent": "^6.0.2", 1380 | "ignore": "^5.2.0", 1381 | "imurmurhash": "^0.1.4", 1382 | "is-glob": "^4.0.0", 1383 | "json-stable-stringify-without-jsonify": "^1.0.1", 1384 | "lodash.merge": "^4.6.2", 1385 | "minimatch": "^3.1.2", 1386 | "natural-compare": "^1.4.0", 1387 | "optionator": "^0.9.3" 1388 | }, 1389 | "bin": { 1390 | "eslint": "bin/eslint.js" 1391 | }, 1392 | "engines": { 1393 | "node": "^18.18.0 || ^20.9.0 || >=21.1.0" 1394 | }, 1395 | "funding": { 1396 | "url": "https://eslint.org/donate" 1397 | }, 1398 | "peerDependencies": { 1399 | "jiti": "*" 1400 | }, 1401 | "peerDependenciesMeta": { 1402 | "jiti": { 1403 | "optional": true 1404 | } 1405 | } 1406 | }, 1407 | "node_modules/eslint-config-prettier": { 1408 | "version": "10.0.2", 1409 | "resolved": "https://registry.npmjs.org/eslint-config-prettier/-/eslint-config-prettier-10.0.2.tgz", 1410 | "integrity": "sha512-1105/17ZIMjmCOJOPNfVdbXafLCLj3hPmkmB7dLgt7XsQ/zkxSuDerE/xgO3RxoHysR1N1whmquY0lSn2O0VLg==", 1411 | "dev": true, 1412 | "license": "MIT", 1413 | "bin": { 1414 | "eslint-config-prettier": "build/bin/cli.js" 1415 | }, 1416 | "peerDependencies": { 1417 | "eslint": ">=7.0.0" 1418 | } 1419 | }, 1420 | "node_modules/eslint-plugin-prettier": { 1421 | "version": "5.2.3", 1422 | "resolved": "https://registry.npmjs.org/eslint-plugin-prettier/-/eslint-plugin-prettier-5.2.3.tgz", 1423 | "integrity": "sha512-qJ+y0FfCp/mQYQ/vWQ3s7eUlFEL4PyKfAJxsnYTJ4YT73nsJBWqmEpFryxV9OeUiqmsTsYJ5Y+KDNaeP31wrRw==", 1424 | "dev": true, 1425 | "license": "MIT", 1426 | "dependencies": { 1427 | "prettier-linter-helpers": "^1.0.0", 1428 | "synckit": "^0.9.1" 1429 | }, 1430 | "engines": { 1431 | "node": "^14.18.0 || >=16.0.0" 1432 | }, 1433 | "funding": { 1434 | "url": "https://opencollective.com/eslint-plugin-prettier" 1435 | }, 1436 | "peerDependencies": { 1437 | "@types/eslint": ">=8.0.0", 1438 | "eslint": ">=8.0.0", 1439 | "eslint-config-prettier": "*", 1440 | "prettier": ">=3.0.0" 1441 | }, 1442 | "peerDependenciesMeta": { 1443 | "@types/eslint": { 1444 | "optional": true 1445 | }, 1446 | "eslint-config-prettier": { 1447 | "optional": true 1448 | } 1449 | } 1450 | }, 1451 | "node_modules/eslint-plugin-vue": { 1452 | "version": "9.32.0", 1453 | "resolved": "https://registry.npmjs.org/eslint-plugin-vue/-/eslint-plugin-vue-9.32.0.tgz", 1454 | "integrity": "sha512-b/Y05HYmnB/32wqVcjxjHZzNpwxj1onBOvqW89W+V+XNG1dRuaFbNd3vT9CLbr2LXjEoq+3vn8DanWf7XU22Ug==", 1455 | "dev": true, 1456 | "license": "MIT", 1457 | "dependencies": { 1458 | "@eslint-community/eslint-utils": "^4.4.0", 1459 | "globals": "^13.24.0", 1460 | "natural-compare": "^1.4.0", 1461 | "nth-check": "^2.1.1", 1462 | "postcss-selector-parser": "^6.0.15", 1463 | "semver": "^7.6.3", 1464 | "vue-eslint-parser": "^9.4.3", 1465 | "xml-name-validator": "^4.0.0" 1466 | }, 1467 | "engines": { 1468 | "node": "^14.17.0 || >=16.0.0" 1469 | }, 1470 | "peerDependencies": { 1471 | "eslint": "^6.2.0 || ^7.0.0 || ^8.0.0 || ^9.0.0" 1472 | } 1473 | }, 1474 | "node_modules/eslint-scope": { 1475 | "version": "7.2.2", 1476 | "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-7.2.2.tgz", 1477 | "integrity": "sha512-dOt21O7lTMhDM+X9mB4GX+DZrZtCUJPL/wlcTqxyrx5IvO0IYtILdtrQGQp+8n5S0gwSVmOf9NQrjMOgfQZlIg==", 1478 | "dev": true, 1479 | "dependencies": { 1480 | "esrecurse": "^4.3.0", 1481 | "estraverse": "^5.2.0" 1482 | }, 1483 | "engines": { 1484 | "node": "^12.22.0 || ^14.17.0 || >=16.0.0" 1485 | }, 1486 | "funding": { 1487 | "url": "https://opencollective.com/eslint" 1488 | } 1489 | }, 1490 | "node_modules/eslint-visitor-keys": { 1491 | "version": "3.4.3", 1492 | "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-3.4.3.tgz", 1493 | "integrity": "sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag==", 1494 | "dev": true, 1495 | "engines": { 1496 | "node": "^12.22.0 || ^14.17.0 || >=16.0.0" 1497 | }, 1498 | "funding": { 1499 | "url": "https://opencollective.com/eslint" 1500 | } 1501 | }, 1502 | "node_modules/eslint/node_modules/brace-expansion": { 1503 | "version": "1.1.11", 1504 | "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", 1505 | "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", 1506 | "dev": true, 1507 | "dependencies": { 1508 | "balanced-match": "^1.0.0", 1509 | "concat-map": "0.0.1" 1510 | } 1511 | }, 1512 | "node_modules/eslint/node_modules/eslint-scope": { 1513 | "version": "8.2.0", 1514 | "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-8.2.0.tgz", 1515 | "integrity": "sha512-PHlWUfG6lvPc3yvP5A4PNyBL1W8fkDUccmI21JUu/+GKZBoH/W5u6usENXUrWFRsyoW5ACUjFGgAFQp5gUlb/A==", 1516 | "dev": true, 1517 | "license": "BSD-2-Clause", 1518 | "dependencies": { 1519 | "esrecurse": "^4.3.0", 1520 | "estraverse": "^5.2.0" 1521 | }, 1522 | "engines": { 1523 | "node": "^18.18.0 || ^20.9.0 || >=21.1.0" 1524 | }, 1525 | "funding": { 1526 | "url": "https://opencollective.com/eslint" 1527 | } 1528 | }, 1529 | "node_modules/eslint/node_modules/eslint-visitor-keys": { 1530 | "version": "4.2.0", 1531 | "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-4.2.0.tgz", 1532 | "integrity": "sha512-UyLnSehNt62FFhSwjZlHmeokpRK59rcz29j+F1/aDgbkbRTk7wIc9XzdoasMUbRNKDM0qQt/+BJ4BrpFeABemw==", 1533 | "dev": true, 1534 | "license": "Apache-2.0", 1535 | "engines": { 1536 | "node": "^18.18.0 || ^20.9.0 || >=21.1.0" 1537 | }, 1538 | "funding": { 1539 | "url": "https://opencollective.com/eslint" 1540 | } 1541 | }, 1542 | "node_modules/eslint/node_modules/espree": { 1543 | "version": "10.3.0", 1544 | "resolved": "https://registry.npmjs.org/espree/-/espree-10.3.0.tgz", 1545 | "integrity": "sha512-0QYC8b24HWY8zjRnDTL6RiHfDbAWn63qb4LMj1Z4b076A4une81+z03Kg7l7mn/48PUTqoLptSXez8oknU8Clg==", 1546 | "dev": true, 1547 | "license": "BSD-2-Clause", 1548 | "dependencies": { 1549 | "acorn": "^8.14.0", 1550 | "acorn-jsx": "^5.3.2", 1551 | "eslint-visitor-keys": "^4.2.0" 1552 | }, 1553 | "engines": { 1554 | "node": "^18.18.0 || ^20.9.0 || >=21.1.0" 1555 | }, 1556 | "funding": { 1557 | "url": "https://opencollective.com/eslint" 1558 | } 1559 | }, 1560 | "node_modules/eslint/node_modules/minimatch": { 1561 | "version": "3.1.2", 1562 | "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", 1563 | "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", 1564 | "dev": true, 1565 | "dependencies": { 1566 | "brace-expansion": "^1.1.7" 1567 | }, 1568 | "engines": { 1569 | "node": "*" 1570 | } 1571 | }, 1572 | "node_modules/espree": { 1573 | "version": "9.6.1", 1574 | "resolved": "https://registry.npmjs.org/espree/-/espree-9.6.1.tgz", 1575 | "integrity": "sha512-oruZaFkjorTpF32kDSI5/75ViwGeZginGGy2NoOSg3Q9bnwlnmDm4HLnkl0RE3n+njDXR037aY1+x58Z/zFdwQ==", 1576 | "dev": true, 1577 | "dependencies": { 1578 | "acorn": "^8.9.0", 1579 | "acorn-jsx": "^5.3.2", 1580 | "eslint-visitor-keys": "^3.4.1" 1581 | }, 1582 | "engines": { 1583 | "node": "^12.22.0 || ^14.17.0 || >=16.0.0" 1584 | }, 1585 | "funding": { 1586 | "url": "https://opencollective.com/eslint" 1587 | } 1588 | }, 1589 | "node_modules/esquery": { 1590 | "version": "1.5.0", 1591 | "resolved": "https://registry.npmjs.org/esquery/-/esquery-1.5.0.tgz", 1592 | "integrity": "sha512-YQLXUplAwJgCydQ78IMJywZCceoqk1oH01OERdSAJc/7U2AylwjhSCLDEtqwg811idIS/9fIU5GjG73IgjKMVg==", 1593 | "dev": true, 1594 | "dependencies": { 1595 | "estraverse": "^5.1.0" 1596 | }, 1597 | "engines": { 1598 | "node": ">=0.10" 1599 | } 1600 | }, 1601 | "node_modules/esrecurse": { 1602 | "version": "4.3.0", 1603 | "resolved": "https://registry.npmjs.org/esrecurse/-/esrecurse-4.3.0.tgz", 1604 | "integrity": "sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==", 1605 | "dev": true, 1606 | "dependencies": { 1607 | "estraverse": "^5.2.0" 1608 | }, 1609 | "engines": { 1610 | "node": ">=4.0" 1611 | } 1612 | }, 1613 | "node_modules/estraverse": { 1614 | "version": "5.3.0", 1615 | "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.3.0.tgz", 1616 | "integrity": "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==", 1617 | "dev": true, 1618 | "engines": { 1619 | "node": ">=4.0" 1620 | } 1621 | }, 1622 | "node_modules/estree-walker": { 1623 | "version": "2.0.2", 1624 | "resolved": "https://registry.npmjs.org/estree-walker/-/estree-walker-2.0.2.tgz", 1625 | "integrity": "sha512-Rfkk/Mp/DL7JVje3u18FxFujQlTNR2q6QfMSMB7AvCBx91NGj/ba3kCfza0f6dVDbw7YlRf/nDrn7pQrCCyQ/w==", 1626 | "license": "MIT" 1627 | }, 1628 | "node_modules/esutils": { 1629 | "version": "2.0.3", 1630 | "resolved": "https://registry.npmjs.org/esutils/-/esutils-2.0.3.tgz", 1631 | "integrity": "sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==", 1632 | "dev": true, 1633 | "license": "BSD-2-Clause", 1634 | "engines": { 1635 | "node": ">=0.10.0" 1636 | } 1637 | }, 1638 | "node_modules/fast-deep-equal": { 1639 | "version": "3.1.3", 1640 | "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz", 1641 | "integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==", 1642 | "dev": true, 1643 | "license": "MIT" 1644 | }, 1645 | "node_modules/fast-diff": { 1646 | "version": "1.3.0", 1647 | "resolved": "https://registry.npmjs.org/fast-diff/-/fast-diff-1.3.0.tgz", 1648 | "integrity": "sha512-VxPP4NqbUjj6MaAOafWeUn2cXWLcCtljklUtZf0Ind4XQ+QPtmA0b18zZy0jIQx+ExRVCR/ZQpBmik5lXshNsw==", 1649 | "dev": true, 1650 | "license": "Apache-2.0" 1651 | }, 1652 | "node_modules/fast-glob": { 1653 | "version": "3.3.3", 1654 | "resolved": "https://registry.npmjs.org/fast-glob/-/fast-glob-3.3.3.tgz", 1655 | "integrity": "sha512-7MptL8U0cqcFdzIzwOTHoilX9x5BrNqye7Z/LuC7kCMRio1EMSyqRK3BEAUD7sXRq4iT4AzTVuZdhgQ2TCvYLg==", 1656 | "dev": true, 1657 | "license": "MIT", 1658 | "dependencies": { 1659 | "@nodelib/fs.stat": "^2.0.2", 1660 | "@nodelib/fs.walk": "^1.2.3", 1661 | "glob-parent": "^5.1.2", 1662 | "merge2": "^1.3.0", 1663 | "micromatch": "^4.0.8" 1664 | }, 1665 | "engines": { 1666 | "node": ">=8.6.0" 1667 | } 1668 | }, 1669 | "node_modules/fast-glob/node_modules/glob-parent": { 1670 | "version": "5.1.2", 1671 | "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz", 1672 | "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==", 1673 | "dev": true, 1674 | "license": "ISC", 1675 | "dependencies": { 1676 | "is-glob": "^4.0.1" 1677 | }, 1678 | "engines": { 1679 | "node": ">= 6" 1680 | } 1681 | }, 1682 | "node_modules/fast-json-stable-stringify": { 1683 | "version": "2.1.0", 1684 | "resolved": "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz", 1685 | "integrity": "sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==", 1686 | "dev": true, 1687 | "license": "MIT" 1688 | }, 1689 | "node_modules/fast-levenshtein": { 1690 | "version": "2.0.6", 1691 | "resolved": "https://registry.npmjs.org/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz", 1692 | "integrity": "sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==", 1693 | "dev": true 1694 | }, 1695 | "node_modules/fastq": { 1696 | "version": "1.19.1", 1697 | "resolved": "https://registry.npmjs.org/fastq/-/fastq-1.19.1.tgz", 1698 | "integrity": "sha512-GwLTyxkCXjXbxqIhTsMI2Nui8huMPtnxg7krajPJAjnEG/iiOS7i+zCtWGZR9G0NBKbXKh6X9m9UIsYX/N6vvQ==", 1699 | "dev": true, 1700 | "license": "ISC", 1701 | "dependencies": { 1702 | "reusify": "^1.0.4" 1703 | } 1704 | }, 1705 | "node_modules/file-entry-cache": { 1706 | "version": "8.0.0", 1707 | "resolved": "https://registry.npmjs.org/file-entry-cache/-/file-entry-cache-8.0.0.tgz", 1708 | "integrity": "sha512-XXTUwCvisa5oacNGRP9SfNtYBNAMi+RPwBFmblZEF7N7swHYQS6/Zfk7SRwx4D5j3CH211YNRco1DEMNVfZCnQ==", 1709 | "dev": true, 1710 | "license": "MIT", 1711 | "dependencies": { 1712 | "flat-cache": "^4.0.0" 1713 | }, 1714 | "engines": { 1715 | "node": ">=16.0.0" 1716 | } 1717 | }, 1718 | "node_modules/fill-range": { 1719 | "version": "7.1.1", 1720 | "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.1.1.tgz", 1721 | "integrity": "sha512-YsGpe3WHLK8ZYi4tWDg2Jy3ebRz2rXowDxnld4bkQB00cc/1Zw9AWnC0i9ztDJitivtQvaI9KaLyKrc+hBW0yg==", 1722 | "dev": true, 1723 | "license": "MIT", 1724 | "dependencies": { 1725 | "to-regex-range": "^5.0.1" 1726 | }, 1727 | "engines": { 1728 | "node": ">=8" 1729 | } 1730 | }, 1731 | "node_modules/find-up": { 1732 | "version": "5.0.0", 1733 | "resolved": "https://registry.npmjs.org/find-up/-/find-up-5.0.0.tgz", 1734 | "integrity": "sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==", 1735 | "dev": true, 1736 | "dependencies": { 1737 | "locate-path": "^6.0.0", 1738 | "path-exists": "^4.0.0" 1739 | }, 1740 | "engines": { 1741 | "node": ">=10" 1742 | }, 1743 | "funding": { 1744 | "url": "https://github.com/sponsors/sindresorhus" 1745 | } 1746 | }, 1747 | "node_modules/flat-cache": { 1748 | "version": "4.0.1", 1749 | "resolved": "https://registry.npmjs.org/flat-cache/-/flat-cache-4.0.1.tgz", 1750 | "integrity": "sha512-f7ccFPK3SXFHpx15UIGyRJ/FJQctuKZ0zVuN3frBo4HnK3cay9VEW0R6yPYFHC0AgqhukPzKjq22t5DmAyqGyw==", 1751 | "dev": true, 1752 | "license": "MIT", 1753 | "dependencies": { 1754 | "flatted": "^3.2.9", 1755 | "keyv": "^4.5.4" 1756 | }, 1757 | "engines": { 1758 | "node": ">=16" 1759 | } 1760 | }, 1761 | "node_modules/flatted": { 1762 | "version": "3.3.3", 1763 | "resolved": "https://registry.npmjs.org/flatted/-/flatted-3.3.3.tgz", 1764 | "integrity": "sha512-GX+ysw4PBCz0PzosHDepZGANEuFCMLrnRTiEy9McGjmkCQYwRq4A/X786G/fjM/+OjsWSU1ZrY5qyARZmO/uwg==", 1765 | "dev": true, 1766 | "license": "ISC" 1767 | }, 1768 | "node_modules/function-bind": { 1769 | "version": "1.1.2", 1770 | "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.2.tgz", 1771 | "integrity": "sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==", 1772 | "dev": true, 1773 | "funding": { 1774 | "url": "https://github.com/sponsors/ljharb" 1775 | } 1776 | }, 1777 | "node_modules/get-intrinsic": { 1778 | "version": "1.2.4", 1779 | "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.2.4.tgz", 1780 | "integrity": "sha512-5uYhsJH8VJBTv7oslg4BznJYhDoRI6waYCxMmCdnTrcCrHA/fCFKoTFz2JKKE0HdDFUF7/oQuhzumXJK7paBRQ==", 1781 | "dev": true, 1782 | "dependencies": { 1783 | "es-errors": "^1.3.0", 1784 | "function-bind": "^1.1.2", 1785 | "has-proto": "^1.0.1", 1786 | "has-symbols": "^1.0.3", 1787 | "hasown": "^2.0.0" 1788 | }, 1789 | "engines": { 1790 | "node": ">= 0.4" 1791 | }, 1792 | "funding": { 1793 | "url": "https://github.com/sponsors/ljharb" 1794 | } 1795 | }, 1796 | "node_modules/glob-parent": { 1797 | "version": "6.0.2", 1798 | "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-6.0.2.tgz", 1799 | "integrity": "sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==", 1800 | "dev": true, 1801 | "dependencies": { 1802 | "is-glob": "^4.0.3" 1803 | }, 1804 | "engines": { 1805 | "node": ">=10.13.0" 1806 | } 1807 | }, 1808 | "node_modules/globals": { 1809 | "version": "13.24.0", 1810 | "resolved": "https://registry.npmjs.org/globals/-/globals-13.24.0.tgz", 1811 | "integrity": "sha512-AhO5QUcj8llrbG09iWhPU2B204J1xnPeL8kQmVorSsy+Sjj1sk8gIyh6cUocGmH4L0UuhAJy+hJMRA4mgA4mFQ==", 1812 | "dev": true, 1813 | "dependencies": { 1814 | "type-fest": "^0.20.2" 1815 | }, 1816 | "engines": { 1817 | "node": ">=8" 1818 | }, 1819 | "funding": { 1820 | "url": "https://github.com/sponsors/sindresorhus" 1821 | } 1822 | }, 1823 | "node_modules/gopd": { 1824 | "version": "1.0.1", 1825 | "resolved": "https://registry.npmjs.org/gopd/-/gopd-1.0.1.tgz", 1826 | "integrity": "sha512-d65bNlIadxvpb/A2abVdlqKqV563juRnZ1Wtk6s1sIR8uNsXR70xqIzVqxVf1eTqDunwT2MkczEeaezCKTZhwA==", 1827 | "dev": true, 1828 | "dependencies": { 1829 | "get-intrinsic": "^1.1.3" 1830 | }, 1831 | "funding": { 1832 | "url": "https://github.com/sponsors/ljharb" 1833 | } 1834 | }, 1835 | "node_modules/graphemer": { 1836 | "version": "1.4.0", 1837 | "resolved": "https://registry.npmjs.org/graphemer/-/graphemer-1.4.0.tgz", 1838 | "integrity": "sha512-EtKwoO6kxCL9WO5xipiHTZlSzBm7WLT627TqC/uVRd0HKmq8NXyebnNYxDoBi7wt8eTWrUrKXCOVaFq9x1kgag==", 1839 | "dev": true, 1840 | "license": "MIT" 1841 | }, 1842 | "node_modules/has-flag": { 1843 | "version": "4.0.0", 1844 | "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", 1845 | "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", 1846 | "dev": true, 1847 | "engines": { 1848 | "node": ">=8" 1849 | } 1850 | }, 1851 | "node_modules/has-property-descriptors": { 1852 | "version": "1.0.2", 1853 | "resolved": "https://registry.npmjs.org/has-property-descriptors/-/has-property-descriptors-1.0.2.tgz", 1854 | "integrity": "sha512-55JNKuIW+vq4Ke1BjOTjM2YctQIvCT7GFzHwmfZPGo5wnrgkid0YQtnAleFSqumZm4az3n2BS+erby5ipJdgrg==", 1855 | "dev": true, 1856 | "dependencies": { 1857 | "es-define-property": "^1.0.0" 1858 | }, 1859 | "funding": { 1860 | "url": "https://github.com/sponsors/ljharb" 1861 | } 1862 | }, 1863 | "node_modules/has-proto": { 1864 | "version": "1.0.3", 1865 | "resolved": "https://registry.npmjs.org/has-proto/-/has-proto-1.0.3.tgz", 1866 | "integrity": "sha512-SJ1amZAJUiZS+PhsVLf5tGydlaVB8EdFpaSO4gmiUKUOxk8qzn5AIy4ZeJUmh22znIdk/uMAUT2pl3FxzVUH+Q==", 1867 | "dev": true, 1868 | "engines": { 1869 | "node": ">= 0.4" 1870 | }, 1871 | "funding": { 1872 | "url": "https://github.com/sponsors/ljharb" 1873 | } 1874 | }, 1875 | "node_modules/has-symbols": { 1876 | "version": "1.0.3", 1877 | "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.3.tgz", 1878 | "integrity": "sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A==", 1879 | "dev": true, 1880 | "engines": { 1881 | "node": ">= 0.4" 1882 | }, 1883 | "funding": { 1884 | "url": "https://github.com/sponsors/ljharb" 1885 | } 1886 | }, 1887 | "node_modules/has-tostringtag": { 1888 | "version": "1.0.2", 1889 | "resolved": "https://registry.npmjs.org/has-tostringtag/-/has-tostringtag-1.0.2.tgz", 1890 | "integrity": "sha512-NqADB8VjPFLM2V0VvHUewwwsw0ZWBaIdgo+ieHtK3hasLz4qeCRjYcqfB6AQrBggRKppKF8L52/VqdVsO47Dlw==", 1891 | "dev": true, 1892 | "dependencies": { 1893 | "has-symbols": "^1.0.3" 1894 | }, 1895 | "engines": { 1896 | "node": ">= 0.4" 1897 | }, 1898 | "funding": { 1899 | "url": "https://github.com/sponsors/ljharb" 1900 | } 1901 | }, 1902 | "node_modules/hasown": { 1903 | "version": "2.0.2", 1904 | "resolved": "https://registry.npmjs.org/hasown/-/hasown-2.0.2.tgz", 1905 | "integrity": "sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==", 1906 | "dev": true, 1907 | "dependencies": { 1908 | "function-bind": "^1.1.2" 1909 | }, 1910 | "engines": { 1911 | "node": ">= 0.4" 1912 | } 1913 | }, 1914 | "node_modules/he": { 1915 | "version": "1.2.0", 1916 | "resolved": "https://registry.npmjs.org/he/-/he-1.2.0.tgz", 1917 | "integrity": "sha512-F/1DnUGPopORZi0ni+CvrCgHQ5FyEAHRLSApuYWMmrbSwoN2Mn/7k+Gl38gJnR7yyDZk6WLXwiGod1JOWNDKGw==", 1918 | "dev": true, 1919 | "license": "MIT", 1920 | "bin": { 1921 | "he": "bin/he" 1922 | } 1923 | }, 1924 | "node_modules/hookable": { 1925 | "version": "5.5.3", 1926 | "resolved": "https://registry.npmjs.org/hookable/-/hookable-5.5.3.tgz", 1927 | "integrity": "sha512-Yc+BQe8SvoXH1643Qez1zqLRmbA5rCL+sSmk6TVos0LWVfNIB7PGncdlId77WzLGSIB5KaWgTaNTs2lNVEI6VQ==", 1928 | "license": "MIT" 1929 | }, 1930 | "node_modules/ignore": { 1931 | "version": "5.3.2", 1932 | "resolved": "https://registry.npmjs.org/ignore/-/ignore-5.3.2.tgz", 1933 | "integrity": "sha512-hsBTNUqQTDwkWtcdYI2i06Y/nUBEsNEDJKjWdigLvegy8kDuJAS8uRlpkkcQpyEXL0Z/pjDy5HBmMjRCJ2gq+g==", 1934 | "dev": true, 1935 | "license": "MIT", 1936 | "engines": { 1937 | "node": ">= 4" 1938 | } 1939 | }, 1940 | "node_modules/import-fresh": { 1941 | "version": "3.3.1", 1942 | "resolved": "https://registry.npmjs.org/import-fresh/-/import-fresh-3.3.1.tgz", 1943 | "integrity": "sha512-TR3KfrTZTYLPB6jUjfx6MF9WcWrHL9su5TObK4ZkYgBdWKPOFoSoQIdEuTuR82pmtxH2spWG9h6etwfr1pLBqQ==", 1944 | "dev": true, 1945 | "license": "MIT", 1946 | "dependencies": { 1947 | "parent-module": "^1.0.0", 1948 | "resolve-from": "^4.0.0" 1949 | }, 1950 | "engines": { 1951 | "node": ">=6" 1952 | }, 1953 | "funding": { 1954 | "url": "https://github.com/sponsors/sindresorhus" 1955 | } 1956 | }, 1957 | "node_modules/imurmurhash": { 1958 | "version": "0.1.4", 1959 | "resolved": "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz", 1960 | "integrity": "sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==", 1961 | "dev": true, 1962 | "engines": { 1963 | "node": ">=0.8.19" 1964 | } 1965 | }, 1966 | "node_modules/is-core-module": { 1967 | "version": "2.14.0", 1968 | "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.14.0.tgz", 1969 | "integrity": "sha512-a5dFJih5ZLYlRtDc0dZWP7RiKr6xIKzmn/oAYCDvdLThadVgyJwlaoQPmRtMSpz+rk0OGAgIu+TcM9HUF0fk1A==", 1970 | "dev": true, 1971 | "dependencies": { 1972 | "hasown": "^2.0.2" 1973 | }, 1974 | "engines": { 1975 | "node": ">= 0.4" 1976 | }, 1977 | "funding": { 1978 | "url": "https://github.com/sponsors/ljharb" 1979 | } 1980 | }, 1981 | "node_modules/is-expression": { 1982 | "version": "4.0.0", 1983 | "resolved": "https://registry.npmjs.org/is-expression/-/is-expression-4.0.0.tgz", 1984 | "integrity": "sha512-zMIXX63sxzG3XrkHkrAPvm/OVZVSCPNkwMHU8oTX7/U3AL78I0QXCEICXUM13BIa8TYGZ68PiTKfQz3yaTNr4A==", 1985 | "dev": true, 1986 | "dependencies": { 1987 | "acorn": "^7.1.1", 1988 | "object-assign": "^4.1.1" 1989 | } 1990 | }, 1991 | "node_modules/is-expression/node_modules/acorn": { 1992 | "version": "7.4.1", 1993 | "resolved": "https://registry.npmjs.org/acorn/-/acorn-7.4.1.tgz", 1994 | "integrity": "sha512-nQyp0o1/mNdbTO1PO6kHkwSrmgZ0MT/jCCpNiwbUjGoRN4dlBhqJtoQuCnEOKzgTVwg0ZWiCoQy6SxMebQVh8A==", 1995 | "dev": true, 1996 | "bin": { 1997 | "acorn": "bin/acorn" 1998 | }, 1999 | "engines": { 2000 | "node": ">=0.4.0" 2001 | } 2002 | }, 2003 | "node_modules/is-extglob": { 2004 | "version": "2.1.1", 2005 | "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz", 2006 | "integrity": "sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==", 2007 | "dev": true, 2008 | "engines": { 2009 | "node": ">=0.10.0" 2010 | } 2011 | }, 2012 | "node_modules/is-glob": { 2013 | "version": "4.0.3", 2014 | "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz", 2015 | "integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==", 2016 | "dev": true, 2017 | "dependencies": { 2018 | "is-extglob": "^2.1.1" 2019 | }, 2020 | "engines": { 2021 | "node": ">=0.10.0" 2022 | } 2023 | }, 2024 | "node_modules/is-number": { 2025 | "version": "7.0.0", 2026 | "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz", 2027 | "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==", 2028 | "dev": true, 2029 | "license": "MIT", 2030 | "engines": { 2031 | "node": ">=0.12.0" 2032 | } 2033 | }, 2034 | "node_modules/is-promise": { 2035 | "version": "2.2.2", 2036 | "resolved": "https://registry.npmjs.org/is-promise/-/is-promise-2.2.2.tgz", 2037 | "integrity": "sha512-+lP4/6lKUBfQjZ2pdxThZvLUAafmZb8OAxFb8XXtiQmS35INgr85hdOGoEs124ez1FCnZJt6jau/T+alh58QFQ==", 2038 | "dev": true 2039 | }, 2040 | "node_modules/is-regex": { 2041 | "version": "1.1.4", 2042 | "resolved": "https://registry.npmjs.org/is-regex/-/is-regex-1.1.4.tgz", 2043 | "integrity": "sha512-kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg==", 2044 | "dev": true, 2045 | "dependencies": { 2046 | "call-bind": "^1.0.2", 2047 | "has-tostringtag": "^1.0.0" 2048 | }, 2049 | "engines": { 2050 | "node": ">= 0.4" 2051 | }, 2052 | "funding": { 2053 | "url": "https://github.com/sponsors/ljharb" 2054 | } 2055 | }, 2056 | "node_modules/is-what": { 2057 | "version": "4.1.16", 2058 | "resolved": "https://registry.npmjs.org/is-what/-/is-what-4.1.16.tgz", 2059 | "integrity": "sha512-ZhMwEosbFJkA0YhFnNDgTM4ZxDRsS6HqTo7qsZM08fehyRYIYa0yHu5R6mgo1n/8MgaPBXiPimPD77baVFYg+A==", 2060 | "license": "MIT", 2061 | "engines": { 2062 | "node": ">=12.13" 2063 | }, 2064 | "funding": { 2065 | "url": "https://github.com/sponsors/mesqueeb" 2066 | } 2067 | }, 2068 | "node_modules/isexe": { 2069 | "version": "2.0.0", 2070 | "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz", 2071 | "integrity": "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==", 2072 | "dev": true, 2073 | "license": "ISC" 2074 | }, 2075 | "node_modules/js-stringify": { 2076 | "version": "1.0.2", 2077 | "resolved": "https://registry.npmjs.org/js-stringify/-/js-stringify-1.0.2.tgz", 2078 | "integrity": "sha512-rtS5ATOo2Q5k1G+DADISilDA6lv79zIiwFd6CcjuIxGKLFm5C+RLImRscVap9k55i+MOZwgliw+NejvkLuGD5g==", 2079 | "dev": true 2080 | }, 2081 | "node_modules/js-yaml": { 2082 | "version": "4.1.0", 2083 | "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.0.tgz", 2084 | "integrity": "sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==", 2085 | "dev": true, 2086 | "license": "MIT", 2087 | "dependencies": { 2088 | "argparse": "^2.0.1" 2089 | }, 2090 | "bin": { 2091 | "js-yaml": "bin/js-yaml.js" 2092 | } 2093 | }, 2094 | "node_modules/json-buffer": { 2095 | "version": "3.0.1", 2096 | "resolved": "https://registry.npmjs.org/json-buffer/-/json-buffer-3.0.1.tgz", 2097 | "integrity": "sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ==", 2098 | "dev": true, 2099 | "license": "MIT" 2100 | }, 2101 | "node_modules/json-parse-even-better-errors": { 2102 | "version": "4.0.0", 2103 | "resolved": "https://registry.npmjs.org/json-parse-even-better-errors/-/json-parse-even-better-errors-4.0.0.tgz", 2104 | "integrity": "sha512-lR4MXjGNgkJc7tkQ97kb2nuEMnNCyU//XYVH0MKTGcXEiSudQ5MKGKen3C5QubYy0vmq+JGitUg92uuywGEwIA==", 2105 | "dev": true, 2106 | "license": "MIT", 2107 | "engines": { 2108 | "node": "^18.17.0 || >=20.5.0" 2109 | } 2110 | }, 2111 | "node_modules/json-schema-traverse": { 2112 | "version": "0.4.1", 2113 | "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", 2114 | "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==", 2115 | "dev": true, 2116 | "license": "MIT" 2117 | }, 2118 | "node_modules/json-stable-stringify-without-jsonify": { 2119 | "version": "1.0.1", 2120 | "resolved": "https://registry.npmjs.org/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz", 2121 | "integrity": "sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==", 2122 | "dev": true 2123 | }, 2124 | "node_modules/jstransformer": { 2125 | "version": "1.0.0", 2126 | "resolved": "https://registry.npmjs.org/jstransformer/-/jstransformer-1.0.0.tgz", 2127 | "integrity": "sha512-C9YK3Rf8q6VAPDCCU9fnqo3mAfOH6vUGnMcP4AQAYIEpWtfGLpwOTmZ+igtdK5y+VvI2n3CyYSzy4Qh34eq24A==", 2128 | "dev": true, 2129 | "dependencies": { 2130 | "is-promise": "^2.0.0", 2131 | "promise": "^7.0.1" 2132 | } 2133 | }, 2134 | "node_modules/keyv": { 2135 | "version": "4.5.4", 2136 | "resolved": "https://registry.npmjs.org/keyv/-/keyv-4.5.4.tgz", 2137 | "integrity": "sha512-oxVHkHR/EJf2CNXnWxRLW6mg7JyCCUcG0DtEGmL2ctUo1PNTin1PUil+r/+4r5MpVgC/fn1kjsx7mjSujKqIpw==", 2138 | "dev": true, 2139 | "license": "MIT", 2140 | "dependencies": { 2141 | "json-buffer": "3.0.1" 2142 | } 2143 | }, 2144 | "node_modules/levn": { 2145 | "version": "0.4.1", 2146 | "resolved": "https://registry.npmjs.org/levn/-/levn-0.4.1.tgz", 2147 | "integrity": "sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==", 2148 | "dev": true, 2149 | "dependencies": { 2150 | "prelude-ls": "^1.2.1", 2151 | "type-check": "~0.4.0" 2152 | }, 2153 | "engines": { 2154 | "node": ">= 0.8.0" 2155 | } 2156 | }, 2157 | "node_modules/locate-path": { 2158 | "version": "6.0.0", 2159 | "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-6.0.0.tgz", 2160 | "integrity": "sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==", 2161 | "dev": true, 2162 | "dependencies": { 2163 | "p-locate": "^5.0.0" 2164 | }, 2165 | "engines": { 2166 | "node": ">=10" 2167 | }, 2168 | "funding": { 2169 | "url": "https://github.com/sponsors/sindresorhus" 2170 | } 2171 | }, 2172 | "node_modules/lodash": { 2173 | "version": "4.17.21", 2174 | "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.21.tgz", 2175 | "integrity": "sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==", 2176 | "dev": true 2177 | }, 2178 | "node_modules/lodash.merge": { 2179 | "version": "4.6.2", 2180 | "resolved": "https://registry.npmjs.org/lodash.merge/-/lodash.merge-4.6.2.tgz", 2181 | "integrity": "sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==", 2182 | "dev": true 2183 | }, 2184 | "node_modules/magic-string": { 2185 | "version": "0.30.17", 2186 | "resolved": "https://registry.npmjs.org/magic-string/-/magic-string-0.30.17.tgz", 2187 | "integrity": "sha512-sNPKHvyjVf7gyjwS4xGTaW/mCnF8wnjtifKBEhxfZ7E/S8tQ0rssrwGNn6q8JH/ohItJfSQp9mBtQYuTlH5QnA==", 2188 | "license": "MIT", 2189 | "dependencies": { 2190 | "@jridgewell/sourcemap-codec": "^1.5.0" 2191 | } 2192 | }, 2193 | "node_modules/memorystream": { 2194 | "version": "0.3.1", 2195 | "resolved": "https://registry.npmjs.org/memorystream/-/memorystream-0.3.1.tgz", 2196 | "integrity": "sha512-S3UwM3yj5mtUSEfP41UZmt/0SCoVYUcU1rkXv+BQ5Ig8ndL4sPoJNBUJERafdPb5jjHJGuMgytgKvKIf58XNBw==", 2197 | "dev": true, 2198 | "engines": { 2199 | "node": ">= 0.10.0" 2200 | } 2201 | }, 2202 | "node_modules/merge2": { 2203 | "version": "1.4.1", 2204 | "resolved": "https://registry.npmjs.org/merge2/-/merge2-1.4.1.tgz", 2205 | "integrity": "sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==", 2206 | "dev": true, 2207 | "license": "MIT", 2208 | "engines": { 2209 | "node": ">= 8" 2210 | } 2211 | }, 2212 | "node_modules/micromatch": { 2213 | "version": "4.0.8", 2214 | "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.8.tgz", 2215 | "integrity": "sha512-PXwfBhYu0hBCPw8Dn0E+WDYb7af3dSLVWKi3HGv84IdF4TyFoC0ysxFd0Goxw7nSv4T/PzEJQxsYsEiFCKo2BA==", 2216 | "dev": true, 2217 | "license": "MIT", 2218 | "dependencies": { 2219 | "braces": "^3.0.3", 2220 | "picomatch": "^2.3.1" 2221 | }, 2222 | "engines": { 2223 | "node": ">=8.6" 2224 | } 2225 | }, 2226 | "node_modules/minimatch": { 2227 | "version": "9.0.4", 2228 | "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-9.0.4.tgz", 2229 | "integrity": "sha512-KqWh+VchfxcMNRAJjj2tnsSJdNbHsVgnkBhTNrW7AjVo6OvLtxw8zfT9oLw1JSohlFzJ8jCoTgaoXvJ+kHt6fw==", 2230 | "dev": true, 2231 | "dependencies": { 2232 | "brace-expansion": "^2.0.1" 2233 | }, 2234 | "engines": { 2235 | "node": ">=16 || 14 >=14.17" 2236 | }, 2237 | "funding": { 2238 | "url": "https://github.com/sponsors/isaacs" 2239 | } 2240 | }, 2241 | "node_modules/mitt": { 2242 | "version": "3.0.1", 2243 | "resolved": "https://registry.npmjs.org/mitt/-/mitt-3.0.1.tgz", 2244 | "integrity": "sha512-vKivATfr97l2/QBCYAkXYDbrIWPM2IIKEl7YPhjCvKlG3kE2gm+uBo6nEXK3M5/Ffh/FLpKExzOQ3JJoJGFKBw==", 2245 | "license": "MIT" 2246 | }, 2247 | "node_modules/ms": { 2248 | "version": "2.1.2", 2249 | "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", 2250 | "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==", 2251 | "dev": true 2252 | }, 2253 | "node_modules/muggle-string": { 2254 | "version": "0.4.1", 2255 | "resolved": "https://registry.npmjs.org/muggle-string/-/muggle-string-0.4.1.tgz", 2256 | "integrity": "sha512-VNTrAak/KhO2i8dqqnqnAHOa3cYBwXEZe9h+D5h/1ZqFSTEFHdM65lR7RoIqq3tBBYavsOXV84NoHXZ0AkPyqQ==", 2257 | "dev": true, 2258 | "license": "MIT" 2259 | }, 2260 | "node_modules/nanoid": { 2261 | "version": "3.3.8", 2262 | "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.8.tgz", 2263 | "integrity": "sha512-WNLf5Sd8oZxOm+TzppcYk8gVOgP+l58xNy58D0nbUnOxOWRWvlcCV4kUF7ltmI6PsrLl/BgKEyS4mqsGChFN0w==", 2264 | "funding": [ 2265 | { 2266 | "type": "github", 2267 | "url": "https://github.com/sponsors/ai" 2268 | } 2269 | ], 2270 | "license": "MIT", 2271 | "bin": { 2272 | "nanoid": "bin/nanoid.cjs" 2273 | }, 2274 | "engines": { 2275 | "node": "^10 || ^12 || ^13.7 || ^14 || >=15.0.1" 2276 | } 2277 | }, 2278 | "node_modules/natural-compare": { 2279 | "version": "1.4.0", 2280 | "resolved": "https://registry.npmjs.org/natural-compare/-/natural-compare-1.4.0.tgz", 2281 | "integrity": "sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==", 2282 | "dev": true 2283 | }, 2284 | "node_modules/npm-normalize-package-bin": { 2285 | "version": "4.0.0", 2286 | "resolved": "https://registry.npmjs.org/npm-normalize-package-bin/-/npm-normalize-package-bin-4.0.0.tgz", 2287 | "integrity": "sha512-TZKxPvItzai9kN9H/TkmCtx/ZN/hvr3vUycjlfmH0ootY9yFBzNOpiXAdIn1Iteqsvk4lQn6B5PTrt+n6h8k/w==", 2288 | "dev": true, 2289 | "license": "ISC", 2290 | "engines": { 2291 | "node": "^18.17.0 || >=20.5.0" 2292 | } 2293 | }, 2294 | "node_modules/npm-run-all2": { 2295 | "version": "7.0.2", 2296 | "resolved": "https://registry.npmjs.org/npm-run-all2/-/npm-run-all2-7.0.2.tgz", 2297 | "integrity": "sha512-7tXR+r9hzRNOPNTvXegM+QzCuMjzUIIq66VDunL6j60O4RrExx32XUhlrS7UK4VcdGw5/Wxzb3kfNcFix9JKDA==", 2298 | "dev": true, 2299 | "license": "MIT", 2300 | "dependencies": { 2301 | "ansi-styles": "^6.2.1", 2302 | "cross-spawn": "^7.0.6", 2303 | "memorystream": "^0.3.1", 2304 | "minimatch": "^9.0.0", 2305 | "pidtree": "^0.6.0", 2306 | "read-package-json-fast": "^4.0.0", 2307 | "shell-quote": "^1.7.3", 2308 | "which": "^5.0.0" 2309 | }, 2310 | "bin": { 2311 | "npm-run-all": "bin/npm-run-all/index.js", 2312 | "npm-run-all2": "bin/npm-run-all/index.js", 2313 | "run-p": "bin/run-p/index.js", 2314 | "run-s": "bin/run-s/index.js" 2315 | }, 2316 | "engines": { 2317 | "node": "^18.17.0 || >=20.5.0", 2318 | "npm": ">= 9" 2319 | } 2320 | }, 2321 | "node_modules/npm-run-all2/node_modules/ansi-styles": { 2322 | "version": "6.2.1", 2323 | "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-6.2.1.tgz", 2324 | "integrity": "sha512-bN798gFfQX+viw3R7yrGWRqnrN2oRkEkUjjl4JNn4E8GxxbjtG3FbrEIIY3l8/hrwUwIeCZvi4QuOTP4MErVug==", 2325 | "dev": true, 2326 | "engines": { 2327 | "node": ">=12" 2328 | }, 2329 | "funding": { 2330 | "url": "https://github.com/chalk/ansi-styles?sponsor=1" 2331 | } 2332 | }, 2333 | "node_modules/npm-run-all2/node_modules/isexe": { 2334 | "version": "3.1.1", 2335 | "resolved": "https://registry.npmjs.org/isexe/-/isexe-3.1.1.tgz", 2336 | "integrity": "sha512-LpB/54B+/2J5hqQ7imZHfdU31OlgQqx7ZicVlkm9kzg9/w8GKLEcFfJl/t7DCEDueOyBAD6zCCwTO6Fzs0NoEQ==", 2337 | "dev": true, 2338 | "license": "ISC", 2339 | "engines": { 2340 | "node": ">=16" 2341 | } 2342 | }, 2343 | "node_modules/npm-run-all2/node_modules/which": { 2344 | "version": "5.0.0", 2345 | "resolved": "https://registry.npmjs.org/which/-/which-5.0.0.tgz", 2346 | "integrity": "sha512-JEdGzHwwkrbWoGOlIHqQ5gtprKGOenpDHpxE9zVR1bWbOtYRyPPHMe9FaP6x61CmNaTThSkb0DAJte5jD+DmzQ==", 2347 | "dev": true, 2348 | "license": "ISC", 2349 | "dependencies": { 2350 | "isexe": "^3.1.1" 2351 | }, 2352 | "bin": { 2353 | "node-which": "bin/which.js" 2354 | }, 2355 | "engines": { 2356 | "node": "^18.17.0 || >=20.5.0" 2357 | } 2358 | }, 2359 | "node_modules/nth-check": { 2360 | "version": "2.1.1", 2361 | "resolved": "https://registry.npmjs.org/nth-check/-/nth-check-2.1.1.tgz", 2362 | "integrity": "sha512-lqjrjmaOoAnWfMmBPL+XNnynZh2+swxiX3WUE0s4yEHI6m+AwrK2UZOimIRl3X/4QctVqS8AiZjFqyOGrMXb/w==", 2363 | "dev": true, 2364 | "dependencies": { 2365 | "boolbase": "^1.0.0" 2366 | }, 2367 | "funding": { 2368 | "url": "https://github.com/fb55/nth-check?sponsor=1" 2369 | } 2370 | }, 2371 | "node_modules/object-assign": { 2372 | "version": "4.1.1", 2373 | "resolved": "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz", 2374 | "integrity": "sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==", 2375 | "dev": true, 2376 | "engines": { 2377 | "node": ">=0.10.0" 2378 | } 2379 | }, 2380 | "node_modules/optionator": { 2381 | "version": "0.9.4", 2382 | "resolved": "https://registry.npmjs.org/optionator/-/optionator-0.9.4.tgz", 2383 | "integrity": "sha512-6IpQ7mKUxRcZNLIObR0hz7lxsapSSIYNZJwXPGeF0mTVqGKFIXj1DQcMoT22S3ROcLyY/rz0PWaWZ9ayWmad9g==", 2384 | "dev": true, 2385 | "dependencies": { 2386 | "deep-is": "^0.1.3", 2387 | "fast-levenshtein": "^2.0.6", 2388 | "levn": "^0.4.1", 2389 | "prelude-ls": "^1.2.1", 2390 | "type-check": "^0.4.0", 2391 | "word-wrap": "^1.2.5" 2392 | }, 2393 | "engines": { 2394 | "node": ">= 0.8.0" 2395 | } 2396 | }, 2397 | "node_modules/p-limit": { 2398 | "version": "3.1.0", 2399 | "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-3.1.0.tgz", 2400 | "integrity": "sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==", 2401 | "dev": true, 2402 | "dependencies": { 2403 | "yocto-queue": "^0.1.0" 2404 | }, 2405 | "engines": { 2406 | "node": ">=10" 2407 | }, 2408 | "funding": { 2409 | "url": "https://github.com/sponsors/sindresorhus" 2410 | } 2411 | }, 2412 | "node_modules/p-locate": { 2413 | "version": "5.0.0", 2414 | "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-5.0.0.tgz", 2415 | "integrity": "sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==", 2416 | "dev": true, 2417 | "dependencies": { 2418 | "p-limit": "^3.0.2" 2419 | }, 2420 | "engines": { 2421 | "node": ">=10" 2422 | }, 2423 | "funding": { 2424 | "url": "https://github.com/sponsors/sindresorhus" 2425 | } 2426 | }, 2427 | "node_modules/parent-module": { 2428 | "version": "1.0.1", 2429 | "resolved": "https://registry.npmjs.org/parent-module/-/parent-module-1.0.1.tgz", 2430 | "integrity": "sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==", 2431 | "dev": true, 2432 | "license": "MIT", 2433 | "dependencies": { 2434 | "callsites": "^3.0.0" 2435 | }, 2436 | "engines": { 2437 | "node": ">=6" 2438 | } 2439 | }, 2440 | "node_modules/path-browserify": { 2441 | "version": "1.0.1", 2442 | "resolved": "https://registry.npmjs.org/path-browserify/-/path-browserify-1.0.1.tgz", 2443 | "integrity": "sha512-b7uo2UCUOYZcnF/3ID0lulOJi/bafxa1xPe7ZPsammBSpjSWQkjNxlt635YGS2MiR9GjvuXCtz2emr3jbsz98g==", 2444 | "dev": true, 2445 | "license": "MIT" 2446 | }, 2447 | "node_modules/path-exists": { 2448 | "version": "4.0.0", 2449 | "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz", 2450 | "integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==", 2451 | "dev": true, 2452 | "engines": { 2453 | "node": ">=8" 2454 | } 2455 | }, 2456 | "node_modules/path-key": { 2457 | "version": "3.1.1", 2458 | "resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz", 2459 | "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==", 2460 | "dev": true, 2461 | "license": "MIT", 2462 | "engines": { 2463 | "node": ">=8" 2464 | } 2465 | }, 2466 | "node_modules/path-parse": { 2467 | "version": "1.0.7", 2468 | "resolved": "https://registry.npmjs.org/path-parse/-/path-parse-1.0.7.tgz", 2469 | "integrity": "sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==", 2470 | "dev": true 2471 | }, 2472 | "node_modules/perfect-debounce": { 2473 | "version": "1.0.0", 2474 | "resolved": "https://registry.npmjs.org/perfect-debounce/-/perfect-debounce-1.0.0.tgz", 2475 | "integrity": "sha512-xCy9V055GLEqoFaHoC1SoLIaLmWctgCUaBaWxDZ7/Zx4CTyX7cJQLJOok/orfjZAh9kEYpjJa4d0KcJmCbctZA==", 2476 | "license": "MIT" 2477 | }, 2478 | "node_modules/picocolors": { 2479 | "version": "1.1.1", 2480 | "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.1.1.tgz", 2481 | "integrity": "sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==", 2482 | "license": "ISC" 2483 | }, 2484 | "node_modules/picomatch": { 2485 | "version": "2.3.1", 2486 | "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz", 2487 | "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==", 2488 | "dev": true, 2489 | "license": "MIT", 2490 | "engines": { 2491 | "node": ">=8.6" 2492 | }, 2493 | "funding": { 2494 | "url": "https://github.com/sponsors/jonschlinkert" 2495 | } 2496 | }, 2497 | "node_modules/pidtree": { 2498 | "version": "0.6.0", 2499 | "resolved": "https://registry.npmjs.org/pidtree/-/pidtree-0.6.0.tgz", 2500 | "integrity": "sha512-eG2dWTVw5bzqGRztnHExczNxt5VGsE6OwTeCG3fdUf9KBsZzO3R5OIIIzWR+iZA0NtZ+RDVdaoE2dK1cn6jH4g==", 2501 | "dev": true, 2502 | "bin": { 2503 | "pidtree": "bin/pidtree.js" 2504 | }, 2505 | "engines": { 2506 | "node": ">=0.10" 2507 | } 2508 | }, 2509 | "node_modules/pinia": { 2510 | "version": "3.0.1", 2511 | "resolved": "https://registry.npmjs.org/pinia/-/pinia-3.0.1.tgz", 2512 | "integrity": "sha512-WXglsDzztOTH6IfcJ99ltYZin2mY8XZCXujkYWVIJlBjqsP6ST7zw+Aarh63E1cDVYeyUcPCxPHzJpEOmzB6Wg==", 2513 | "license": "MIT", 2514 | "dependencies": { 2515 | "@vue/devtools-api": "^7.7.2" 2516 | }, 2517 | "funding": { 2518 | "url": "https://github.com/sponsors/posva" 2519 | }, 2520 | "peerDependencies": { 2521 | "typescript": ">=4.4.4", 2522 | "vue": "^2.7.0 || ^3.5.11" 2523 | }, 2524 | "peerDependenciesMeta": { 2525 | "typescript": { 2526 | "optional": true 2527 | } 2528 | } 2529 | }, 2530 | "node_modules/postcss": { 2531 | "version": "8.5.3", 2532 | "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.5.3.tgz", 2533 | "integrity": "sha512-dle9A3yYxlBSrt8Fu+IpjGT8SY8hN0mlaA6GY8t0P5PjIOZemULz/E2Bnm/2dcUOena75OTNkHI76uZBNUUq3A==", 2534 | "funding": [ 2535 | { 2536 | "type": "opencollective", 2537 | "url": "https://opencollective.com/postcss/" 2538 | }, 2539 | { 2540 | "type": "tidelift", 2541 | "url": "https://tidelift.com/funding/github/npm/postcss" 2542 | }, 2543 | { 2544 | "type": "github", 2545 | "url": "https://github.com/sponsors/ai" 2546 | } 2547 | ], 2548 | "license": "MIT", 2549 | "dependencies": { 2550 | "nanoid": "^3.3.8", 2551 | "picocolors": "^1.1.1", 2552 | "source-map-js": "^1.2.1" 2553 | }, 2554 | "engines": { 2555 | "node": "^10 || ^12 || >=14" 2556 | } 2557 | }, 2558 | "node_modules/postcss-selector-parser": { 2559 | "version": "6.1.0", 2560 | "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-6.1.0.tgz", 2561 | "integrity": "sha512-UMz42UD0UY0EApS0ZL9o1XnLhSTtvvvLe5Dc2H2O56fvRZi+KulDyf5ctDhhtYJBGKStV2FL1fy6253cmLgqVQ==", 2562 | "dev": true, 2563 | "dependencies": { 2564 | "cssesc": "^3.0.0", 2565 | "util-deprecate": "^1.0.2" 2566 | }, 2567 | "engines": { 2568 | "node": ">=4" 2569 | } 2570 | }, 2571 | "node_modules/prelude-ls": { 2572 | "version": "1.2.1", 2573 | "resolved": "https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.2.1.tgz", 2574 | "integrity": "sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==", 2575 | "dev": true, 2576 | "engines": { 2577 | "node": ">= 0.8.0" 2578 | } 2579 | }, 2580 | "node_modules/prettier": { 2581 | "version": "3.5.2", 2582 | "resolved": "https://registry.npmjs.org/prettier/-/prettier-3.5.2.tgz", 2583 | "integrity": "sha512-lc6npv5PH7hVqozBR7lkBNOGXV9vMwROAPlumdBkX0wTbbzPu/U1hk5yL8p2pt4Xoc+2mkT8t/sow2YrV/M5qg==", 2584 | "dev": true, 2585 | "license": "MIT", 2586 | "bin": { 2587 | "prettier": "bin/prettier.cjs" 2588 | }, 2589 | "engines": { 2590 | "node": ">=14" 2591 | }, 2592 | "funding": { 2593 | "url": "https://github.com/prettier/prettier?sponsor=1" 2594 | } 2595 | }, 2596 | "node_modules/prettier-linter-helpers": { 2597 | "version": "1.0.0", 2598 | "resolved": "https://registry.npmjs.org/prettier-linter-helpers/-/prettier-linter-helpers-1.0.0.tgz", 2599 | "integrity": "sha512-GbK2cP9nraSSUF9N2XwUwqfzlAFlMNYYl+ShE/V+H8a9uNl/oUqB1w2EL54Jh0OlyRSd8RfWYJ3coVS4TROP2w==", 2600 | "dev": true, 2601 | "license": "MIT", 2602 | "dependencies": { 2603 | "fast-diff": "^1.1.2" 2604 | }, 2605 | "engines": { 2606 | "node": ">=6.0.0" 2607 | } 2608 | }, 2609 | "node_modules/promise": { 2610 | "version": "7.3.1", 2611 | "resolved": "https://registry.npmjs.org/promise/-/promise-7.3.1.tgz", 2612 | "integrity": "sha512-nolQXZ/4L+bP/UGlkfaIujX9BKxGwmQ9OT4mOt5yvy8iK1h3wqTEJCijzGANTCCl9nWjY41juyAn2K3Q1hLLTg==", 2613 | "dev": true, 2614 | "dependencies": { 2615 | "asap": "~2.0.3" 2616 | } 2617 | }, 2618 | "node_modules/pug": { 2619 | "version": "3.0.3", 2620 | "resolved": "https://registry.npmjs.org/pug/-/pug-3.0.3.tgz", 2621 | "integrity": "sha512-uBi6kmc9f3SZ3PXxqcHiUZLmIXgfgWooKWXcwSGwQd2Zi5Rb0bT14+8CJjJgI8AB+nndLaNgHGrcc6bPIB665g==", 2622 | "dev": true, 2623 | "dependencies": { 2624 | "pug-code-gen": "^3.0.3", 2625 | "pug-filters": "^4.0.0", 2626 | "pug-lexer": "^5.0.1", 2627 | "pug-linker": "^4.0.0", 2628 | "pug-load": "^3.0.0", 2629 | "pug-parser": "^6.0.0", 2630 | "pug-runtime": "^3.0.1", 2631 | "pug-strip-comments": "^2.0.0" 2632 | } 2633 | }, 2634 | "node_modules/pug-attrs": { 2635 | "version": "3.0.0", 2636 | "resolved": "https://registry.npmjs.org/pug-attrs/-/pug-attrs-3.0.0.tgz", 2637 | "integrity": "sha512-azINV9dUtzPMFQktvTXciNAfAuVh/L/JCl0vtPCwvOA21uZrC08K/UnmrL+SXGEVc1FwzjW62+xw5S/uaLj6cA==", 2638 | "dev": true, 2639 | "dependencies": { 2640 | "constantinople": "^4.0.1", 2641 | "js-stringify": "^1.0.2", 2642 | "pug-runtime": "^3.0.0" 2643 | } 2644 | }, 2645 | "node_modules/pug-code-gen": { 2646 | "version": "3.0.3", 2647 | "resolved": "https://registry.npmjs.org/pug-code-gen/-/pug-code-gen-3.0.3.tgz", 2648 | "integrity": "sha512-cYQg0JW0w32Ux+XTeZnBEeuWrAY7/HNE6TWnhiHGnnRYlCgyAUPoyh9KzCMa9WhcJlJ1AtQqpEYHc+vbCzA+Aw==", 2649 | "dev": true, 2650 | "dependencies": { 2651 | "constantinople": "^4.0.1", 2652 | "doctypes": "^1.1.0", 2653 | "js-stringify": "^1.0.2", 2654 | "pug-attrs": "^3.0.0", 2655 | "pug-error": "^2.1.0", 2656 | "pug-runtime": "^3.0.1", 2657 | "void-elements": "^3.1.0", 2658 | "with": "^7.0.0" 2659 | } 2660 | }, 2661 | "node_modules/pug-error": { 2662 | "version": "2.1.0", 2663 | "resolved": "https://registry.npmjs.org/pug-error/-/pug-error-2.1.0.tgz", 2664 | "integrity": "sha512-lv7sU9e5Jk8IeUheHata6/UThZ7RK2jnaaNztxfPYUY+VxZyk/ePVaNZ/vwmH8WqGvDz3LrNYt/+gA55NDg6Pg==", 2665 | "dev": true 2666 | }, 2667 | "node_modules/pug-filters": { 2668 | "version": "4.0.0", 2669 | "resolved": "https://registry.npmjs.org/pug-filters/-/pug-filters-4.0.0.tgz", 2670 | "integrity": "sha512-yeNFtq5Yxmfz0f9z2rMXGw/8/4i1cCFecw/Q7+D0V2DdtII5UvqE12VaZ2AY7ri6o5RNXiweGH79OCq+2RQU4A==", 2671 | "dev": true, 2672 | "dependencies": { 2673 | "constantinople": "^4.0.1", 2674 | "jstransformer": "1.0.0", 2675 | "pug-error": "^2.0.0", 2676 | "pug-walk": "^2.0.0", 2677 | "resolve": "^1.15.1" 2678 | } 2679 | }, 2680 | "node_modules/pug-lexer": { 2681 | "version": "5.0.1", 2682 | "resolved": "https://registry.npmjs.org/pug-lexer/-/pug-lexer-5.0.1.tgz", 2683 | "integrity": "sha512-0I6C62+keXlZPZkOJeVam9aBLVP2EnbeDw3An+k0/QlqdwH6rv8284nko14Na7c0TtqtogfWXcRoFE4O4Ff20w==", 2684 | "dev": true, 2685 | "dependencies": { 2686 | "character-parser": "^2.2.0", 2687 | "is-expression": "^4.0.0", 2688 | "pug-error": "^2.0.0" 2689 | } 2690 | }, 2691 | "node_modules/pug-linker": { 2692 | "version": "4.0.0", 2693 | "resolved": "https://registry.npmjs.org/pug-linker/-/pug-linker-4.0.0.tgz", 2694 | "integrity": "sha512-gjD1yzp0yxbQqnzBAdlhbgoJL5qIFJw78juN1NpTLt/mfPJ5VgC4BvkoD3G23qKzJtIIXBbcCt6FioLSFLOHdw==", 2695 | "dev": true, 2696 | "dependencies": { 2697 | "pug-error": "^2.0.0", 2698 | "pug-walk": "^2.0.0" 2699 | } 2700 | }, 2701 | "node_modules/pug-load": { 2702 | "version": "3.0.0", 2703 | "resolved": "https://registry.npmjs.org/pug-load/-/pug-load-3.0.0.tgz", 2704 | "integrity": "sha512-OCjTEnhLWZBvS4zni/WUMjH2YSUosnsmjGBB1An7CsKQarYSWQ0GCVyd4eQPMFJqZ8w9xgs01QdiZXKVjk92EQ==", 2705 | "dev": true, 2706 | "dependencies": { 2707 | "object-assign": "^4.1.1", 2708 | "pug-walk": "^2.0.0" 2709 | } 2710 | }, 2711 | "node_modules/pug-parser": { 2712 | "version": "6.0.0", 2713 | "resolved": "https://registry.npmjs.org/pug-parser/-/pug-parser-6.0.0.tgz", 2714 | "integrity": "sha512-ukiYM/9cH6Cml+AOl5kETtM9NR3WulyVP2y4HOU45DyMim1IeP/OOiyEWRr6qk5I5klpsBnbuHpwKmTx6WURnw==", 2715 | "dev": true, 2716 | "dependencies": { 2717 | "pug-error": "^2.0.0", 2718 | "token-stream": "1.0.0" 2719 | } 2720 | }, 2721 | "node_modules/pug-runtime": { 2722 | "version": "3.0.1", 2723 | "resolved": "https://registry.npmjs.org/pug-runtime/-/pug-runtime-3.0.1.tgz", 2724 | "integrity": "sha512-L50zbvrQ35TkpHwv0G6aLSuueDRwc/97XdY8kL3tOT0FmhgG7UypU3VztfV/LATAvmUfYi4wNxSajhSAeNN+Kg==", 2725 | "dev": true 2726 | }, 2727 | "node_modules/pug-strip-comments": { 2728 | "version": "2.0.0", 2729 | "resolved": "https://registry.npmjs.org/pug-strip-comments/-/pug-strip-comments-2.0.0.tgz", 2730 | "integrity": "sha512-zo8DsDpH7eTkPHCXFeAk1xZXJbyoTfdPlNR0bK7rpOMuhBYb0f5qUVCO1xlsitYd3w5FQTK7zpNVKb3rZoUrrQ==", 2731 | "dev": true, 2732 | "dependencies": { 2733 | "pug-error": "^2.0.0" 2734 | } 2735 | }, 2736 | "node_modules/pug-walk": { 2737 | "version": "2.0.0", 2738 | "resolved": "https://registry.npmjs.org/pug-walk/-/pug-walk-2.0.0.tgz", 2739 | "integrity": "sha512-yYELe9Q5q9IQhuvqsZNwA5hfPkMJ8u92bQLIMcsMxf/VADjNtEYptU+inlufAFYcWdHlwNfZOEnOOQrZrcyJCQ==", 2740 | "dev": true 2741 | }, 2742 | "node_modules/punycode": { 2743 | "version": "2.3.1", 2744 | "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.3.1.tgz", 2745 | "integrity": "sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg==", 2746 | "dev": true, 2747 | "license": "MIT", 2748 | "engines": { 2749 | "node": ">=6" 2750 | } 2751 | }, 2752 | "node_modules/queue-microtask": { 2753 | "version": "1.2.3", 2754 | "resolved": "https://registry.npmjs.org/queue-microtask/-/queue-microtask-1.2.3.tgz", 2755 | "integrity": "sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==", 2756 | "dev": true, 2757 | "funding": [ 2758 | { 2759 | "type": "github", 2760 | "url": "https://github.com/sponsors/feross" 2761 | }, 2762 | { 2763 | "type": "patreon", 2764 | "url": "https://www.patreon.com/feross" 2765 | }, 2766 | { 2767 | "type": "consulting", 2768 | "url": "https://feross.org/support" 2769 | } 2770 | ], 2771 | "license": "MIT" 2772 | }, 2773 | "node_modules/read-package-json-fast": { 2774 | "version": "4.0.0", 2775 | "resolved": "https://registry.npmjs.org/read-package-json-fast/-/read-package-json-fast-4.0.0.tgz", 2776 | "integrity": "sha512-qpt8EwugBWDw2cgE2W+/3oxC+KTez2uSVR8JU9Q36TXPAGCaozfQUs59v4j4GFpWTaw0i6hAZSvOmu1J0uOEUg==", 2777 | "dev": true, 2778 | "license": "ISC", 2779 | "dependencies": { 2780 | "json-parse-even-better-errors": "^4.0.0", 2781 | "npm-normalize-package-bin": "^4.0.0" 2782 | }, 2783 | "engines": { 2784 | "node": "^18.17.0 || >=20.5.0" 2785 | } 2786 | }, 2787 | "node_modules/resolve": { 2788 | "version": "1.22.8", 2789 | "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.22.8.tgz", 2790 | "integrity": "sha512-oKWePCxqpd6FlLvGV1VU0x7bkPmmCNolxzjMf4NczoDnQcIWrAF+cPtZn5i6n+RfD2d9i0tzpKnG6Yk168yIyw==", 2791 | "dev": true, 2792 | "dependencies": { 2793 | "is-core-module": "^2.13.0", 2794 | "path-parse": "^1.0.7", 2795 | "supports-preserve-symlinks-flag": "^1.0.0" 2796 | }, 2797 | "bin": { 2798 | "resolve": "bin/resolve" 2799 | }, 2800 | "funding": { 2801 | "url": "https://github.com/sponsors/ljharb" 2802 | } 2803 | }, 2804 | "node_modules/resolve-from": { 2805 | "version": "4.0.0", 2806 | "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-4.0.0.tgz", 2807 | "integrity": "sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==", 2808 | "dev": true, 2809 | "license": "MIT", 2810 | "engines": { 2811 | "node": ">=4" 2812 | } 2813 | }, 2814 | "node_modules/reusify": { 2815 | "version": "1.1.0", 2816 | "resolved": "https://registry.npmjs.org/reusify/-/reusify-1.1.0.tgz", 2817 | "integrity": "sha512-g6QUff04oZpHs0eG5p83rFLhHeV00ug/Yf9nZM6fLeUrPguBTkTQOdpAWWspMh55TZfVQDPaN3NQJfbVRAxdIw==", 2818 | "dev": true, 2819 | "license": "MIT", 2820 | "engines": { 2821 | "iojs": ">=1.0.0", 2822 | "node": ">=0.10.0" 2823 | } 2824 | }, 2825 | "node_modules/rfdc": { 2826 | "version": "1.4.1", 2827 | "resolved": "https://registry.npmjs.org/rfdc/-/rfdc-1.4.1.tgz", 2828 | "integrity": "sha512-q1b3N5QkRUWUl7iyylaaj3kOpIT0N2i9MqIEQXP73GVsN9cw3fdx8X63cEmWhJGi2PPCF23Ijp7ktmd39rawIA==", 2829 | "license": "MIT" 2830 | }, 2831 | "node_modules/rollup": { 2832 | "version": "4.34.8", 2833 | "resolved": "https://registry.npmjs.org/rollup/-/rollup-4.34.8.tgz", 2834 | "integrity": "sha512-489gTVMzAYdiZHFVA/ig/iYFllCcWFHMvUHI1rpFmkoUtRlQxqh6/yiNqnYibjMZ2b/+FUQwldG+aLsEt6bglQ==", 2835 | "dev": true, 2836 | "license": "MIT", 2837 | "dependencies": { 2838 | "@types/estree": "1.0.6" 2839 | }, 2840 | "bin": { 2841 | "rollup": "dist/bin/rollup" 2842 | }, 2843 | "engines": { 2844 | "node": ">=18.0.0", 2845 | "npm": ">=8.0.0" 2846 | }, 2847 | "optionalDependencies": { 2848 | "@rollup/rollup-android-arm-eabi": "4.34.8", 2849 | "@rollup/rollup-android-arm64": "4.34.8", 2850 | "@rollup/rollup-darwin-arm64": "4.34.8", 2851 | "@rollup/rollup-darwin-x64": "4.34.8", 2852 | "@rollup/rollup-freebsd-arm64": "4.34.8", 2853 | "@rollup/rollup-freebsd-x64": "4.34.8", 2854 | "@rollup/rollup-linux-arm-gnueabihf": "4.34.8", 2855 | "@rollup/rollup-linux-arm-musleabihf": "4.34.8", 2856 | "@rollup/rollup-linux-arm64-gnu": "4.34.8", 2857 | "@rollup/rollup-linux-arm64-musl": "4.34.8", 2858 | "@rollup/rollup-linux-loongarch64-gnu": "4.34.8", 2859 | "@rollup/rollup-linux-powerpc64le-gnu": "4.34.8", 2860 | "@rollup/rollup-linux-riscv64-gnu": "4.34.8", 2861 | "@rollup/rollup-linux-s390x-gnu": "4.34.8", 2862 | "@rollup/rollup-linux-x64-gnu": "4.34.8", 2863 | "@rollup/rollup-linux-x64-musl": "4.34.8", 2864 | "@rollup/rollup-win32-arm64-msvc": "4.34.8", 2865 | "@rollup/rollup-win32-ia32-msvc": "4.34.8", 2866 | "@rollup/rollup-win32-x64-msvc": "4.34.8", 2867 | "fsevents": "~2.3.2" 2868 | } 2869 | }, 2870 | "node_modules/run-parallel": { 2871 | "version": "1.2.0", 2872 | "resolved": "https://registry.npmjs.org/run-parallel/-/run-parallel-1.2.0.tgz", 2873 | "integrity": "sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==", 2874 | "dev": true, 2875 | "funding": [ 2876 | { 2877 | "type": "github", 2878 | "url": "https://github.com/sponsors/feross" 2879 | }, 2880 | { 2881 | "type": "patreon", 2882 | "url": "https://www.patreon.com/feross" 2883 | }, 2884 | { 2885 | "type": "consulting", 2886 | "url": "https://feross.org/support" 2887 | } 2888 | ], 2889 | "license": "MIT", 2890 | "dependencies": { 2891 | "queue-microtask": "^1.2.2" 2892 | } 2893 | }, 2894 | "node_modules/semver": { 2895 | "version": "7.7.1", 2896 | "resolved": "https://registry.npmjs.org/semver/-/semver-7.7.1.tgz", 2897 | "integrity": "sha512-hlq8tAfn0m/61p4BVRcPzIGr6LKiMwo4VM6dGi6pt4qcRkmNzTcWq6eCEjEh+qXjkMDvPlOFFSGwQjoEa6gyMA==", 2898 | "dev": true, 2899 | "license": "ISC", 2900 | "bin": { 2901 | "semver": "bin/semver.js" 2902 | }, 2903 | "engines": { 2904 | "node": ">=10" 2905 | } 2906 | }, 2907 | "node_modules/set-function-length": { 2908 | "version": "1.2.2", 2909 | "resolved": "https://registry.npmjs.org/set-function-length/-/set-function-length-1.2.2.tgz", 2910 | "integrity": "sha512-pgRc4hJ4/sNjWCSS9AmnS40x3bNMDTknHgL5UaMBTMyJnU90EgWh1Rz+MC9eFu4BuN/UwZjKQuY/1v3rM7HMfg==", 2911 | "dev": true, 2912 | "dependencies": { 2913 | "define-data-property": "^1.1.4", 2914 | "es-errors": "^1.3.0", 2915 | "function-bind": "^1.1.2", 2916 | "get-intrinsic": "^1.2.4", 2917 | "gopd": "^1.0.1", 2918 | "has-property-descriptors": "^1.0.2" 2919 | }, 2920 | "engines": { 2921 | "node": ">= 0.4" 2922 | } 2923 | }, 2924 | "node_modules/shebang-command": { 2925 | "version": "2.0.0", 2926 | "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz", 2927 | "integrity": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==", 2928 | "dev": true, 2929 | "license": "MIT", 2930 | "dependencies": { 2931 | "shebang-regex": "^3.0.0" 2932 | }, 2933 | "engines": { 2934 | "node": ">=8" 2935 | } 2936 | }, 2937 | "node_modules/shebang-regex": { 2938 | "version": "3.0.0", 2939 | "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz", 2940 | "integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==", 2941 | "dev": true, 2942 | "license": "MIT", 2943 | "engines": { 2944 | "node": ">=8" 2945 | } 2946 | }, 2947 | "node_modules/shell-quote": { 2948 | "version": "1.8.1", 2949 | "resolved": "https://registry.npmjs.org/shell-quote/-/shell-quote-1.8.1.tgz", 2950 | "integrity": "sha512-6j1W9l1iAs/4xYBI1SYOVZyFcCis9b4KCLQ8fgAGG07QvzaRLVVRQvAy85yNmmZSjYjg4MWh4gNvlPujU/5LpA==", 2951 | "dev": true, 2952 | "funding": { 2953 | "url": "https://github.com/sponsors/ljharb" 2954 | } 2955 | }, 2956 | "node_modules/source-map-js": { 2957 | "version": "1.2.1", 2958 | "resolved": "https://registry.npmjs.org/source-map-js/-/source-map-js-1.2.1.tgz", 2959 | "integrity": "sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA==", 2960 | "license": "BSD-3-Clause", 2961 | "engines": { 2962 | "node": ">=0.10.0" 2963 | } 2964 | }, 2965 | "node_modules/speakingurl": { 2966 | "version": "14.0.1", 2967 | "resolved": "https://registry.npmjs.org/speakingurl/-/speakingurl-14.0.1.tgz", 2968 | "integrity": "sha512-1POYv7uv2gXoyGFpBCmpDVSNV74IfsWlDW216UPjbWufNf+bSU6GdbDsxdcxtfwb4xlI3yxzOTKClUosxARYrQ==", 2969 | "license": "BSD-3-Clause", 2970 | "engines": { 2971 | "node": ">=0.10.0" 2972 | } 2973 | }, 2974 | "node_modules/strip-json-comments": { 2975 | "version": "3.1.1", 2976 | "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-3.1.1.tgz", 2977 | "integrity": "sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==", 2978 | "dev": true, 2979 | "license": "MIT", 2980 | "engines": { 2981 | "node": ">=8" 2982 | }, 2983 | "funding": { 2984 | "url": "https://github.com/sponsors/sindresorhus" 2985 | } 2986 | }, 2987 | "node_modules/superjson": { 2988 | "version": "2.2.2", 2989 | "resolved": "https://registry.npmjs.org/superjson/-/superjson-2.2.2.tgz", 2990 | "integrity": "sha512-5JRxVqC8I8NuOUjzBbvVJAKNM8qoVuH0O77h4WInc/qC2q5IreqKxYwgkga3PfA22OayK2ikceb/B26dztPl+Q==", 2991 | "license": "MIT", 2992 | "dependencies": { 2993 | "copy-anything": "^3.0.2" 2994 | }, 2995 | "engines": { 2996 | "node": ">=16" 2997 | } 2998 | }, 2999 | "node_modules/supports-color": { 3000 | "version": "7.2.0", 3001 | "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", 3002 | "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", 3003 | "dev": true, 3004 | "dependencies": { 3005 | "has-flag": "^4.0.0" 3006 | }, 3007 | "engines": { 3008 | "node": ">=8" 3009 | } 3010 | }, 3011 | "node_modules/supports-preserve-symlinks-flag": { 3012 | "version": "1.0.0", 3013 | "resolved": "https://registry.npmjs.org/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz", 3014 | "integrity": "sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==", 3015 | "dev": true, 3016 | "engines": { 3017 | "node": ">= 0.4" 3018 | }, 3019 | "funding": { 3020 | "url": "https://github.com/sponsors/ljharb" 3021 | } 3022 | }, 3023 | "node_modules/synckit": { 3024 | "version": "0.9.2", 3025 | "resolved": "https://registry.npmjs.org/synckit/-/synckit-0.9.2.tgz", 3026 | "integrity": "sha512-vrozgXDQwYO72vHjUb/HnFbQx1exDjoKzqx23aXEg2a9VIg2TSFZ8FmeZpTjUCFMYw7mpX4BE2SFu8wI7asYsw==", 3027 | "dev": true, 3028 | "license": "MIT", 3029 | "dependencies": { 3030 | "@pkgr/core": "^0.1.0", 3031 | "tslib": "^2.6.2" 3032 | }, 3033 | "engines": { 3034 | "node": "^14.18.0 || >=16.0.0" 3035 | }, 3036 | "funding": { 3037 | "url": "https://opencollective.com/unts" 3038 | } 3039 | }, 3040 | "node_modules/to-regex-range": { 3041 | "version": "5.0.1", 3042 | "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz", 3043 | "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==", 3044 | "dev": true, 3045 | "license": "MIT", 3046 | "dependencies": { 3047 | "is-number": "^7.0.0" 3048 | }, 3049 | "engines": { 3050 | "node": ">=8.0" 3051 | } 3052 | }, 3053 | "node_modules/token-stream": { 3054 | "version": "1.0.0", 3055 | "resolved": "https://registry.npmjs.org/token-stream/-/token-stream-1.0.0.tgz", 3056 | "integrity": "sha512-VSsyNPPW74RpHwR8Fc21uubwHY7wMDeJLys2IX5zJNih+OnAnaifKHo+1LHT7DAdloQ7apeaaWg8l7qnf/TnEg==", 3057 | "dev": true 3058 | }, 3059 | "node_modules/ts-api-utils": { 3060 | "version": "2.0.1", 3061 | "resolved": "https://registry.npmjs.org/ts-api-utils/-/ts-api-utils-2.0.1.tgz", 3062 | "integrity": "sha512-dnlgjFSVetynI8nzgJ+qF62efpglpWRk8isUEWZGWlJYySCTD6aKvbUDu+zbPeDakk3bg5H4XpitHukgfL1m9w==", 3063 | "dev": true, 3064 | "license": "MIT", 3065 | "engines": { 3066 | "node": ">=18.12" 3067 | }, 3068 | "peerDependencies": { 3069 | "typescript": ">=4.8.4" 3070 | } 3071 | }, 3072 | "node_modules/tslib": { 3073 | "version": "2.8.1", 3074 | "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.8.1.tgz", 3075 | "integrity": "sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w==", 3076 | "dev": true, 3077 | "license": "0BSD" 3078 | }, 3079 | "node_modules/type-check": { 3080 | "version": "0.4.0", 3081 | "resolved": "https://registry.npmjs.org/type-check/-/type-check-0.4.0.tgz", 3082 | "integrity": "sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==", 3083 | "dev": true, 3084 | "dependencies": { 3085 | "prelude-ls": "^1.2.1" 3086 | }, 3087 | "engines": { 3088 | "node": ">= 0.8.0" 3089 | } 3090 | }, 3091 | "node_modules/type-fest": { 3092 | "version": "0.20.2", 3093 | "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.20.2.tgz", 3094 | "integrity": "sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==", 3095 | "dev": true, 3096 | "engines": { 3097 | "node": ">=10" 3098 | }, 3099 | "funding": { 3100 | "url": "https://github.com/sponsors/sindresorhus" 3101 | } 3102 | }, 3103 | "node_modules/typescript": { 3104 | "version": "5.7.3", 3105 | "resolved": "https://registry.npmjs.org/typescript/-/typescript-5.7.3.tgz", 3106 | "integrity": "sha512-84MVSjMEHP+FQRPy3pX9sTVV/INIex71s9TL2Gm5FG/WG1SqXeKyZ0k7/blY/4FdOzI12CBy1vGc4og/eus0fw==", 3107 | "devOptional": true, 3108 | "license": "Apache-2.0", 3109 | "bin": { 3110 | "tsc": "bin/tsc", 3111 | "tsserver": "bin/tsserver" 3112 | }, 3113 | "engines": { 3114 | "node": ">=14.17" 3115 | } 3116 | }, 3117 | "node_modules/typescript-eslint": { 3118 | "version": "8.25.0", 3119 | "resolved": "https://registry.npmjs.org/typescript-eslint/-/typescript-eslint-8.25.0.tgz", 3120 | "integrity": "sha512-TxRdQQLH4g7JkoFlYG3caW5v1S6kEkz8rqt80iQJZUYPq1zD1Ra7HfQBJJ88ABRaMvHAXnwRvRB4V+6sQ9xN5Q==", 3121 | "dev": true, 3122 | "license": "MIT", 3123 | "dependencies": { 3124 | "@typescript-eslint/eslint-plugin": "8.25.0", 3125 | "@typescript-eslint/parser": "8.25.0", 3126 | "@typescript-eslint/utils": "8.25.0" 3127 | }, 3128 | "engines": { 3129 | "node": "^18.18.0 || ^20.9.0 || >=21.1.0" 3130 | }, 3131 | "funding": { 3132 | "type": "opencollective", 3133 | "url": "https://opencollective.com/typescript-eslint" 3134 | }, 3135 | "peerDependencies": { 3136 | "eslint": "^8.57.0 || ^9.0.0", 3137 | "typescript": ">=4.8.4 <5.8.0" 3138 | } 3139 | }, 3140 | "node_modules/undici-types": { 3141 | "version": "6.20.0", 3142 | "resolved": "https://registry.npmjs.org/undici-types/-/undici-types-6.20.0.tgz", 3143 | "integrity": "sha512-Ny6QZ2Nju20vw1SRHe3d9jVu6gJ+4e3+MMpqu7pqE5HT6WsTSlce++GQmK5UXS8mzV8DSYHrQH+Xrf2jVcuKNg==", 3144 | "dev": true, 3145 | "license": "MIT" 3146 | }, 3147 | "node_modules/uri-js": { 3148 | "version": "4.4.1", 3149 | "resolved": "https://registry.npmjs.org/uri-js/-/uri-js-4.4.1.tgz", 3150 | "integrity": "sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==", 3151 | "dev": true, 3152 | "license": "BSD-2-Clause", 3153 | "dependencies": { 3154 | "punycode": "^2.1.0" 3155 | } 3156 | }, 3157 | "node_modules/util-deprecate": { 3158 | "version": "1.0.2", 3159 | "resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz", 3160 | "integrity": "sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==", 3161 | "dev": true 3162 | }, 3163 | "node_modules/vite": { 3164 | "version": "6.2.0", 3165 | "resolved": "https://registry.npmjs.org/vite/-/vite-6.2.0.tgz", 3166 | "integrity": "sha512-7dPxoo+WsT/64rDcwoOjk76XHj+TqNTIvHKcuMQ1k4/SeHDaQt5GFAeLYzrimZrMpn/O6DtdI03WUjdxuPM0oQ==", 3167 | "dev": true, 3168 | "license": "MIT", 3169 | "dependencies": { 3170 | "esbuild": "^0.25.0", 3171 | "postcss": "^8.5.3", 3172 | "rollup": "^4.30.1" 3173 | }, 3174 | "bin": { 3175 | "vite": "bin/vite.js" 3176 | }, 3177 | "engines": { 3178 | "node": "^18.0.0 || ^20.0.0 || >=22.0.0" 3179 | }, 3180 | "funding": { 3181 | "url": "https://github.com/vitejs/vite?sponsor=1" 3182 | }, 3183 | "optionalDependencies": { 3184 | "fsevents": "~2.3.3" 3185 | }, 3186 | "peerDependencies": { 3187 | "@types/node": "^18.0.0 || ^20.0.0 || >=22.0.0", 3188 | "jiti": ">=1.21.0", 3189 | "less": "*", 3190 | "lightningcss": "^1.21.0", 3191 | "sass": "*", 3192 | "sass-embedded": "*", 3193 | "stylus": "*", 3194 | "sugarss": "*", 3195 | "terser": "^5.16.0", 3196 | "tsx": "^4.8.1", 3197 | "yaml": "^2.4.2" 3198 | }, 3199 | "peerDependenciesMeta": { 3200 | "@types/node": { 3201 | "optional": true 3202 | }, 3203 | "jiti": { 3204 | "optional": true 3205 | }, 3206 | "less": { 3207 | "optional": true 3208 | }, 3209 | "lightningcss": { 3210 | "optional": true 3211 | }, 3212 | "sass": { 3213 | "optional": true 3214 | }, 3215 | "sass-embedded": { 3216 | "optional": true 3217 | }, 3218 | "stylus": { 3219 | "optional": true 3220 | }, 3221 | "sugarss": { 3222 | "optional": true 3223 | }, 3224 | "terser": { 3225 | "optional": true 3226 | }, 3227 | "tsx": { 3228 | "optional": true 3229 | }, 3230 | "yaml": { 3231 | "optional": true 3232 | } 3233 | } 3234 | }, 3235 | "node_modules/vite-plugin-pug": { 3236 | "version": "0.4.1", 3237 | "resolved": "https://registry.npmjs.org/vite-plugin-pug/-/vite-plugin-pug-0.4.1.tgz", 3238 | "integrity": "sha512-2M4qNpIgUV+zA63w566jyp3LpaIuSBMfghOzue7PYnFTms48Ux78Bp/ccRSaGRbFW9BkTxdqgi5h7xvBN7YruQ==", 3239 | "dev": true, 3240 | "license": "Unlicense", 3241 | "dependencies": { 3242 | "picocolors": "~1", 3243 | "pug": "^3.0.3" 3244 | } 3245 | }, 3246 | "node_modules/void-elements": { 3247 | "version": "3.1.0", 3248 | "resolved": "https://registry.npmjs.org/void-elements/-/void-elements-3.1.0.tgz", 3249 | "integrity": "sha512-Dhxzh5HZuiHQhbvTW9AMetFfBHDMYpo23Uo9btPXgdYP+3T5S+p+jgNy7spra+veYhBP2dCSgxR/i2Y02h5/6w==", 3250 | "dev": true, 3251 | "engines": { 3252 | "node": ">=0.10.0" 3253 | } 3254 | }, 3255 | "node_modules/vscode-uri": { 3256 | "version": "3.1.0", 3257 | "resolved": "https://registry.npmjs.org/vscode-uri/-/vscode-uri-3.1.0.tgz", 3258 | "integrity": "sha512-/BpdSx+yCQGnCvecbyXdxHDkuk55/G3xwnC0GqY4gmQ3j+A+g8kzzgB4Nk/SINjqn6+waqw3EgbVF2QKExkRxQ==", 3259 | "dev": true, 3260 | "license": "MIT" 3261 | }, 3262 | "node_modules/vue": { 3263 | "version": "3.5.13", 3264 | "resolved": "https://registry.npmjs.org/vue/-/vue-3.5.13.tgz", 3265 | "integrity": "sha512-wmeiSMxkZCSc+PM2w2VRsOYAZC8GdipNFRTsLSfodVqI9mbejKeXEGr8SckuLnrQPGe3oJN5c3K0vpoU9q/wCQ==", 3266 | "license": "MIT", 3267 | "dependencies": { 3268 | "@vue/compiler-dom": "3.5.13", 3269 | "@vue/compiler-sfc": "3.5.13", 3270 | "@vue/runtime-dom": "3.5.13", 3271 | "@vue/server-renderer": "3.5.13", 3272 | "@vue/shared": "3.5.13" 3273 | }, 3274 | "peerDependencies": { 3275 | "typescript": "*" 3276 | }, 3277 | "peerDependenciesMeta": { 3278 | "typescript": { 3279 | "optional": true 3280 | } 3281 | } 3282 | }, 3283 | "node_modules/vue-eslint-parser": { 3284 | "version": "9.4.3", 3285 | "resolved": "https://registry.npmjs.org/vue-eslint-parser/-/vue-eslint-parser-9.4.3.tgz", 3286 | "integrity": "sha512-2rYRLWlIpaiN8xbPiDyXZXRgLGOtWxERV7ND5fFAv5qo1D2N9Fu9MNajBNc6o13lZ+24DAWCkQCvj4klgmcITg==", 3287 | "dev": true, 3288 | "dependencies": { 3289 | "debug": "^4.3.4", 3290 | "eslint-scope": "^7.1.1", 3291 | "eslint-visitor-keys": "^3.3.0", 3292 | "espree": "^9.3.1", 3293 | "esquery": "^1.4.0", 3294 | "lodash": "^4.17.21", 3295 | "semver": "^7.3.6" 3296 | }, 3297 | "engines": { 3298 | "node": "^14.17.0 || >=16.0.0" 3299 | }, 3300 | "funding": { 3301 | "url": "https://github.com/sponsors/mysticatea" 3302 | }, 3303 | "peerDependencies": { 3304 | "eslint": ">=6.0.0" 3305 | } 3306 | }, 3307 | "node_modules/vue-router": { 3308 | "version": "4.5.0", 3309 | "resolved": "https://registry.npmjs.org/vue-router/-/vue-router-4.5.0.tgz", 3310 | "integrity": "sha512-HDuk+PuH5monfNuY+ct49mNmkCRK4xJAV9Ts4z9UFc4rzdDnxQLyCMGGc8pKhZhHTVzfanpNwB/lwqevcBwI4w==", 3311 | "license": "MIT", 3312 | "dependencies": { 3313 | "@vue/devtools-api": "^6.6.4" 3314 | }, 3315 | "funding": { 3316 | "url": "https://github.com/sponsors/posva" 3317 | }, 3318 | "peerDependencies": { 3319 | "vue": "^3.2.0" 3320 | } 3321 | }, 3322 | "node_modules/vue-router/node_modules/@vue/devtools-api": { 3323 | "version": "6.6.4", 3324 | "resolved": "https://registry.npmjs.org/@vue/devtools-api/-/devtools-api-6.6.4.tgz", 3325 | "integrity": "sha512-sGhTPMuXqZ1rVOk32RylztWkfXTRhuS7vgAKv0zjqk8gbsHkJ7xfFf+jbySxt7tWObEJwyKaHMikV/WGDiQm8g==", 3326 | "license": "MIT" 3327 | }, 3328 | "node_modules/vue-tsc": { 3329 | "version": "2.2.4", 3330 | "resolved": "https://registry.npmjs.org/vue-tsc/-/vue-tsc-2.2.4.tgz", 3331 | "integrity": "sha512-3EVHlxtpMXcb5bCaK7QDFTbEkMusDfVk0HVRrkv5hEb+Clpu9a96lKUXJAeD/akRlkoA4H8MCHgBDN19S6FnzA==", 3332 | "dev": true, 3333 | "license": "MIT", 3334 | "dependencies": { 3335 | "@volar/typescript": "~2.4.11", 3336 | "@vue/language-core": "2.2.4" 3337 | }, 3338 | "bin": { 3339 | "vue-tsc": "bin/vue-tsc.js" 3340 | }, 3341 | "peerDependencies": { 3342 | "typescript": ">=5.0.0" 3343 | } 3344 | }, 3345 | "node_modules/which": { 3346 | "version": "2.0.2", 3347 | "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz", 3348 | "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==", 3349 | "dev": true, 3350 | "license": "ISC", 3351 | "dependencies": { 3352 | "isexe": "^2.0.0" 3353 | }, 3354 | "bin": { 3355 | "node-which": "bin/node-which" 3356 | }, 3357 | "engines": { 3358 | "node": ">= 8" 3359 | } 3360 | }, 3361 | "node_modules/with": { 3362 | "version": "7.0.2", 3363 | "resolved": "https://registry.npmjs.org/with/-/with-7.0.2.tgz", 3364 | "integrity": "sha512-RNGKj82nUPg3g5ygxkQl0R937xLyho1J24ItRCBTr/m1YnZkzJy1hUiHUJrc/VlsDQzsCnInEGSg3bci0Lmd4w==", 3365 | "dev": true, 3366 | "dependencies": { 3367 | "@babel/parser": "^7.9.6", 3368 | "@babel/types": "^7.9.6", 3369 | "assert-never": "^1.2.1", 3370 | "babel-walk": "3.0.0-canary-5" 3371 | }, 3372 | "engines": { 3373 | "node": ">= 10.0.0" 3374 | } 3375 | }, 3376 | "node_modules/word-wrap": { 3377 | "version": "1.2.5", 3378 | "resolved": "https://registry.npmjs.org/word-wrap/-/word-wrap-1.2.5.tgz", 3379 | "integrity": "sha512-BN22B5eaMMI9UMtjrGd5g5eCYPpCPDUy0FJXbYsaT5zYxjFOckS53SQDE3pWkVoWpHXVb3BrYcEN4Twa55B5cA==", 3380 | "dev": true, 3381 | "engines": { 3382 | "node": ">=0.10.0" 3383 | } 3384 | }, 3385 | "node_modules/xml-name-validator": { 3386 | "version": "4.0.0", 3387 | "resolved": "https://registry.npmjs.org/xml-name-validator/-/xml-name-validator-4.0.0.tgz", 3388 | "integrity": "sha512-ICP2e+jsHvAj2E2lIHxa5tjXRlKDJo4IdvPvCXbXQGdzSfmSpNVyIKMvoZHjDY9DP0zV17iI85o90vRFXNccRw==", 3389 | "dev": true, 3390 | "engines": { 3391 | "node": ">=12" 3392 | } 3393 | }, 3394 | "node_modules/yocto-queue": { 3395 | "version": "0.1.0", 3396 | "resolved": "https://registry.npmjs.org/yocto-queue/-/yocto-queue-0.1.0.tgz", 3397 | "integrity": "sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==", 3398 | "dev": true, 3399 | "engines": { 3400 | "node": ">=10" 3401 | }, 3402 | "funding": { 3403 | "url": "https://github.com/sponsors/sindresorhus" 3404 | } 3405 | } 3406 | } 3407 | } 3408 | -------------------------------------------------------------------------------- /frontend/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "frontend", 3 | "version": "0.0.0", 4 | "private": true, 5 | "type": "module", 6 | "scripts": { 7 | "start": "vite", 8 | "dev": "vite --port 3001", 9 | "build": "run-p type-check \"build-only {@}\" --", 10 | "preview": "vite preview", 11 | "build-only": "vite build", 12 | "type-check": "vue-tsc --build --force", 13 | "lint": "eslint . --ext .vue,.js,.jsx,.cjs,.mjs,.ts,.tsx,.cts,.mts --fix --ignore-path .gitignore", 14 | "format": "prettier --write src/" 15 | }, 16 | "dependencies": { 17 | "pinia": "^3.0.1", 18 | "vue": "^3.5.13", 19 | "vue-router": "^4.5.0" 20 | }, 21 | "devDependencies": { 22 | "@rushstack/eslint-patch": "^1.10.5", 23 | "@tsconfig/node20": "^20.1.4", 24 | "@types/node": "^22.13.5", 25 | "@vitejs/plugin-vue": "^5.2.1", 26 | "@vue/eslint-config-prettier": "^10.2.0", 27 | "@vue/eslint-config-typescript": "^14.4.0", 28 | "@vue/tsconfig": "^0.7.0", 29 | "eslint": "^9.21.0", 30 | "eslint-plugin-vue": "^9.32.0", 31 | "npm-run-all2": "^7.0.2", 32 | "prettier": "^3.5.2", 33 | "typescript": "~5.7.3", 34 | "vite": "^6.2.0", 35 | "vite-plugin-pug": "^0.4.1", 36 | "vue-tsc": "^2.2.4" 37 | } 38 | } 39 | -------------------------------------------------------------------------------- /frontend/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashersw/stack/d4a9fc3531fcdabbf9f7fe2bd2d2031cc69b1aee/frontend/public/favicon.ico -------------------------------------------------------------------------------- /frontend/src/app.vue: -------------------------------------------------------------------------------- 1 | 13 | 14 | 24 | 25 | 88 | -------------------------------------------------------------------------------- /frontend/src/assets/base.css: -------------------------------------------------------------------------------- 1 | /* color palette from */ 2 | :root { 3 | --vt-c-white: #ffffff; 4 | --vt-c-white-soft: #f8f8f8; 5 | --vt-c-white-mute: #f2f2f2; 6 | 7 | --vt-c-black: #181818; 8 | --vt-c-black-soft: #222222; 9 | --vt-c-black-mute: #282828; 10 | 11 | --vt-c-indigo: #2c3e50; 12 | 13 | --vt-c-divider-light-1: rgba(60, 60, 60, 0.29); 14 | --vt-c-divider-light-2: rgba(60, 60, 60, 0.12); 15 | --vt-c-divider-dark-1: rgba(84, 84, 84, 0.65); 16 | --vt-c-divider-dark-2: rgba(84, 84, 84, 0.48); 17 | 18 | --vt-c-text-light-1: var(--vt-c-indigo); 19 | --vt-c-text-light-2: rgba(60, 60, 60, 0.66); 20 | --vt-c-text-dark-1: var(--vt-c-white); 21 | --vt-c-text-dark-2: rgba(235, 235, 235, 0.64); 22 | } 23 | 24 | /* semantic color variables for this project */ 25 | :root { 26 | --color-background: var(--vt-c-white); 27 | --color-background-soft: var(--vt-c-white-soft); 28 | --color-background-mute: var(--vt-c-white-mute); 29 | 30 | --color-border: var(--vt-c-divider-light-2); 31 | --color-border-hover: var(--vt-c-divider-light-1); 32 | 33 | --color-heading: var(--vt-c-text-light-1); 34 | --color-text: var(--vt-c-text-light-1); 35 | 36 | --section-gap: 160px; 37 | } 38 | 39 | @media (prefers-color-scheme: dark) { 40 | :root { 41 | --color-background: var(--vt-c-black); 42 | --color-background-soft: var(--vt-c-black-soft); 43 | --color-background-mute: var(--vt-c-black-mute); 44 | 45 | --color-border: var(--vt-c-divider-dark-2); 46 | --color-border-hover: var(--vt-c-divider-dark-1); 47 | 48 | --color-heading: var(--vt-c-text-dark-1); 49 | --color-text: var(--vt-c-text-dark-2); 50 | } 51 | } 52 | 53 | *, 54 | *::before, 55 | *::after { 56 | box-sizing: border-box; 57 | margin: 0; 58 | font-weight: normal; 59 | } 60 | 61 | body { 62 | min-height: 100vh; 63 | color: var(--color-text); 64 | background: var(--color-background); 65 | transition: 66 | color 0.5s, 67 | background-color 0.5s; 68 | line-height: 1.6; 69 | font-family: 70 | Inter, 71 | -apple-system, 72 | BlinkMacSystemFont, 73 | 'Segoe UI', 74 | Roboto, 75 | Oxygen, 76 | Ubuntu, 77 | Cantarell, 78 | 'Fira Sans', 79 | 'Droid Sans', 80 | 'Helvetica Neue', 81 | sans-serif; 82 | font-size: 15px; 83 | text-rendering: optimizeLegibility; 84 | -webkit-font-smoothing: antialiased; 85 | -moz-osx-font-smoothing: grayscale; 86 | } 87 | -------------------------------------------------------------------------------- /frontend/src/assets/logo.svg: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /frontend/src/assets/main.css: -------------------------------------------------------------------------------- 1 | @import './base.css'; 2 | 3 | #app { 4 | max-width: 1280px; 5 | margin: 0 auto; 6 | padding: 2rem; 7 | font-weight: normal; 8 | } 9 | 10 | a, 11 | .green { 12 | text-decoration: none; 13 | color: hsla(160, 100%, 37%, 1); 14 | transition: 0.4s; 15 | padding: 3px; 16 | } 17 | 18 | @media (hover: hover) { 19 | a:hover { 20 | background-color: hsla(160, 100%, 37%, 0.2); 21 | } 22 | } 23 | 24 | @media (min-width: 1024px) { 25 | body { 26 | display: flex; 27 | place-items: center; 28 | } 29 | 30 | #app { 31 | display: grid; 32 | grid-template-columns: 1fr 1fr; 33 | padding: 0 2rem; 34 | } 35 | } 36 | -------------------------------------------------------------------------------- /frontend/src/components/HelloWorld.vue: -------------------------------------------------------------------------------- 1 | 12 | 13 | 23 | 24 | 49 | -------------------------------------------------------------------------------- /frontend/src/components/TheWelcome.vue: -------------------------------------------------------------------------------- 1 | 18 | 19 | 22 | -------------------------------------------------------------------------------- /frontend/src/components/WelcomeItem.vue: -------------------------------------------------------------------------------- 1 | 10 | 11 | 84 | -------------------------------------------------------------------------------- /frontend/src/components/icons/IconCommunity.vue: -------------------------------------------------------------------------------- 1 | 8 | -------------------------------------------------------------------------------- /frontend/src/components/icons/IconDocumentation.vue: -------------------------------------------------------------------------------- 1 | 8 | -------------------------------------------------------------------------------- /frontend/src/components/icons/IconEcosystem.vue: -------------------------------------------------------------------------------- 1 | 8 | -------------------------------------------------------------------------------- /frontend/src/components/icons/IconSupport.vue: -------------------------------------------------------------------------------- 1 | 8 | -------------------------------------------------------------------------------- /frontend/src/components/icons/IconTooling.vue: -------------------------------------------------------------------------------- 1 | 2 | 20 | -------------------------------------------------------------------------------- /frontend/src/main.ts: -------------------------------------------------------------------------------- 1 | import './assets/main.css' 2 | 3 | import { createApp } from 'vue' 4 | import { createPinia } from 'pinia' 5 | 6 | import App from './app.vue' 7 | import router from './router' 8 | 9 | const app = createApp(App) 10 | 11 | app.use(createPinia()) 12 | app.use(router) 13 | 14 | app.mount('#app') 15 | -------------------------------------------------------------------------------- /frontend/src/router/index.ts: -------------------------------------------------------------------------------- 1 | import { createRouter, createWebHistory } from 'vue-router' 2 | import HomeView from '../views/HomeView.vue' 3 | 4 | const router = createRouter({ 5 | history: createWebHistory(import.meta.env.BASE_URL), 6 | routes: [ 7 | { 8 | path: '/', 9 | name: 'home', 10 | component: HomeView 11 | }, 12 | { 13 | path: '/about', 14 | name: 'about', 15 | // route level code-splitting 16 | // this generates a separate chunk (About.[hash].js) for this route 17 | // which is lazy-loaded when the route is visited. 18 | component: () => import('../views/AboutView.vue') 19 | } 20 | ] 21 | }) 22 | 23 | export default router 24 | -------------------------------------------------------------------------------- /frontend/src/stores/counter.ts: -------------------------------------------------------------------------------- 1 | import { defineStore } from 'pinia' 2 | 3 | export const useCounterStore = defineStore('counter', { 4 | state: () => ({ 5 | count: 0 6 | }), 7 | getters: { 8 | doubleCount: (state) => state.count * 2 9 | }, 10 | actions: { 11 | increment() { 12 | this.count++ 13 | } 14 | } 15 | }) 16 | -------------------------------------------------------------------------------- /frontend/src/stores/user.ts: -------------------------------------------------------------------------------- 1 | import { defineStore } from 'pinia' 2 | 3 | export const useUserStore = defineStore('user', { 4 | state: () => ({ 5 | users: [] 6 | }), 7 | actions: { 8 | async fetchUsers() { 9 | try { 10 | const response = await fetch('/api/users') 11 | if (!response.ok) { 12 | throw new Error('Failed to fetch users') 13 | } 14 | const data = await response.json() 15 | this.users = data 16 | } catch (error) { 17 | console.error('Error fetching users:', error) 18 | } 19 | } 20 | } 21 | }) 22 | -------------------------------------------------------------------------------- /frontend/src/views/AboutView.vue: -------------------------------------------------------------------------------- 1 | 5 | 6 | 15 | -------------------------------------------------------------------------------- /frontend/src/views/HomeView.vue: -------------------------------------------------------------------------------- 1 | 10 | 11 | 15 | -------------------------------------------------------------------------------- /frontend/tsconfig.app.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "@vue/tsconfig/tsconfig.dom.json", 3 | "include": ["env.d.ts", "src/**/*", "src/**/*.vue"], 4 | "exclude": ["src/**/__tests__/*"], 5 | "compilerOptions": { 6 | "composite": true, 7 | "tsBuildInfoFile": "./node_modules/.tmp/tsconfig.app.tsbuildinfo", 8 | 9 | "baseUrl": ".", 10 | "paths": { 11 | "@/*": ["./src/*"] 12 | } 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /frontend/tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "files": [], 3 | "references": [ 4 | { 5 | "path": "./tsconfig.node.json" 6 | }, 7 | { 8 | "path": "./tsconfig.app.json" 9 | } 10 | ] 11 | } 12 | -------------------------------------------------------------------------------- /frontend/tsconfig.node.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "@tsconfig/node20/tsconfig.json", 3 | "include": [ 4 | "vite.config.*", 5 | "vitest.config.*", 6 | "cypress.config.*", 7 | "nightwatch.conf.*", 8 | "playwright.config.*" 9 | ], 10 | "compilerOptions": { 11 | "composite": true, 12 | "noEmit": true, 13 | "tsBuildInfoFile": "./node_modules/.tmp/tsconfig.node.tsbuildinfo", 14 | 15 | "module": "ESNext", 16 | "moduleResolution": "Bundler", 17 | "types": ["node"] 18 | } 19 | } 20 | -------------------------------------------------------------------------------- /frontend/vite.config.ts: -------------------------------------------------------------------------------- 1 | import { fileURLToPath, URL } from 'node:url' 2 | import { defineConfig } from 'vite' 3 | import vue from '@vitejs/plugin-vue' 4 | import pugPlugin from "vite-plugin-pug" 5 | 6 | export default defineConfig(() => { 7 | return { 8 | plugins: [vue(), pugPlugin()], 9 | resolve: { 10 | alias: { 11 | '@': fileURLToPath(new URL('./src', import.meta.url)) 12 | } 13 | }, 14 | server: { 15 | host: true, 16 | port: 3001, 17 | }, 18 | }; 19 | }); 20 | -------------------------------------------------------------------------------- /package-lock.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "stack", 3 | "version": "1.0.1", 4 | "lockfileVersion": 3, 5 | "requires": true, 6 | "packages": { 7 | "": { 8 | "name": "stack", 9 | "version": "1.0.1", 10 | "license": "MIT", 11 | "devDependencies": { 12 | "concurrently": "^9.1.2", 13 | "husky": "^9.1.7" 14 | } 15 | }, 16 | "node_modules/ansi-regex": { 17 | "version": "5.0.1", 18 | "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", 19 | "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", 20 | "dev": true, 21 | "engines": { 22 | "node": ">=8" 23 | } 24 | }, 25 | "node_modules/ansi-styles": { 26 | "version": "4.3.0", 27 | "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", 28 | "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", 29 | "dev": true, 30 | "dependencies": { 31 | "color-convert": "^2.0.1" 32 | }, 33 | "engines": { 34 | "node": ">=8" 35 | }, 36 | "funding": { 37 | "url": "https://github.com/chalk/ansi-styles?sponsor=1" 38 | } 39 | }, 40 | "node_modules/chalk": { 41 | "version": "4.1.2", 42 | "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", 43 | "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", 44 | "dev": true, 45 | "dependencies": { 46 | "ansi-styles": "^4.1.0", 47 | "supports-color": "^7.1.0" 48 | }, 49 | "engines": { 50 | "node": ">=10" 51 | }, 52 | "funding": { 53 | "url": "https://github.com/chalk/chalk?sponsor=1" 54 | } 55 | }, 56 | "node_modules/chalk/node_modules/supports-color": { 57 | "version": "7.2.0", 58 | "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", 59 | "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", 60 | "dev": true, 61 | "dependencies": { 62 | "has-flag": "^4.0.0" 63 | }, 64 | "engines": { 65 | "node": ">=8" 66 | } 67 | }, 68 | "node_modules/cliui": { 69 | "version": "8.0.1", 70 | "resolved": "https://registry.npmjs.org/cliui/-/cliui-8.0.1.tgz", 71 | "integrity": "sha512-BSeNnyus75C4//NQ9gQt1/csTXyo/8Sb+afLAkzAptFuMsod9HFokGNudZpi/oQV73hnVK+sR+5PVRMd+Dr7YQ==", 72 | "dev": true, 73 | "dependencies": { 74 | "string-width": "^4.2.0", 75 | "strip-ansi": "^6.0.1", 76 | "wrap-ansi": "^7.0.0" 77 | }, 78 | "engines": { 79 | "node": ">=12" 80 | } 81 | }, 82 | "node_modules/color-convert": { 83 | "version": "2.0.1", 84 | "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", 85 | "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", 86 | "dev": true, 87 | "dependencies": { 88 | "color-name": "~1.1.4" 89 | }, 90 | "engines": { 91 | "node": ">=7.0.0" 92 | } 93 | }, 94 | "node_modules/color-name": { 95 | "version": "1.1.4", 96 | "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", 97 | "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", 98 | "dev": true 99 | }, 100 | "node_modules/concurrently": { 101 | "version": "9.1.2", 102 | "resolved": "https://registry.npmjs.org/concurrently/-/concurrently-9.1.2.tgz", 103 | "integrity": "sha512-H9MWcoPsYddwbOGM6difjVwVZHl63nwMEwDJG/L7VGtuaJhb12h2caPG2tVPWs7emuYix252iGfqOyrz1GczTQ==", 104 | "dev": true, 105 | "license": "MIT", 106 | "dependencies": { 107 | "chalk": "^4.1.2", 108 | "lodash": "^4.17.21", 109 | "rxjs": "^7.8.1", 110 | "shell-quote": "^1.8.1", 111 | "supports-color": "^8.1.1", 112 | "tree-kill": "^1.2.2", 113 | "yargs": "^17.7.2" 114 | }, 115 | "bin": { 116 | "conc": "dist/bin/concurrently.js", 117 | "concurrently": "dist/bin/concurrently.js" 118 | }, 119 | "engines": { 120 | "node": ">=18" 121 | }, 122 | "funding": { 123 | "url": "https://github.com/open-cli-tools/concurrently?sponsor=1" 124 | } 125 | }, 126 | "node_modules/emoji-regex": { 127 | "version": "8.0.0", 128 | "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", 129 | "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==", 130 | "dev": true 131 | }, 132 | "node_modules/escalade": { 133 | "version": "3.1.2", 134 | "resolved": "https://registry.npmjs.org/escalade/-/escalade-3.1.2.tgz", 135 | "integrity": "sha512-ErCHMCae19vR8vQGe50xIsVomy19rg6gFu3+r3jkEO46suLMWBksvVyoGgQV+jOfl84ZSOSlmv6Gxa89PmTGmA==", 136 | "dev": true, 137 | "engines": { 138 | "node": ">=6" 139 | } 140 | }, 141 | "node_modules/get-caller-file": { 142 | "version": "2.0.5", 143 | "resolved": "https://registry.npmjs.org/get-caller-file/-/get-caller-file-2.0.5.tgz", 144 | "integrity": "sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==", 145 | "dev": true, 146 | "engines": { 147 | "node": "6.* || 8.* || >= 10.*" 148 | } 149 | }, 150 | "node_modules/has-flag": { 151 | "version": "4.0.0", 152 | "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", 153 | "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", 154 | "dev": true, 155 | "engines": { 156 | "node": ">=8" 157 | } 158 | }, 159 | "node_modules/husky": { 160 | "version": "9.1.7", 161 | "resolved": "https://registry.npmjs.org/husky/-/husky-9.1.7.tgz", 162 | "integrity": "sha512-5gs5ytaNjBrh5Ow3zrvdUUY+0VxIuWVL4i9irt6friV+BqdCfmV11CQTWMiBYWHbXhco+J1kHfTOUkePhCDvMA==", 163 | "dev": true, 164 | "license": "MIT", 165 | "bin": { 166 | "husky": "bin.js" 167 | }, 168 | "engines": { 169 | "node": ">=18" 170 | }, 171 | "funding": { 172 | "url": "https://github.com/sponsors/typicode" 173 | } 174 | }, 175 | "node_modules/is-fullwidth-code-point": { 176 | "version": "3.0.0", 177 | "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz", 178 | "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==", 179 | "dev": true, 180 | "engines": { 181 | "node": ">=8" 182 | } 183 | }, 184 | "node_modules/lodash": { 185 | "version": "4.17.21", 186 | "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.21.tgz", 187 | "integrity": "sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==", 188 | "dev": true 189 | }, 190 | "node_modules/require-directory": { 191 | "version": "2.1.1", 192 | "resolved": "https://registry.npmjs.org/require-directory/-/require-directory-2.1.1.tgz", 193 | "integrity": "sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q==", 194 | "dev": true, 195 | "engines": { 196 | "node": ">=0.10.0" 197 | } 198 | }, 199 | "node_modules/rxjs": { 200 | "version": "7.8.1", 201 | "resolved": "https://registry.npmjs.org/rxjs/-/rxjs-7.8.1.tgz", 202 | "integrity": "sha512-AA3TVj+0A2iuIoQkWEK/tqFjBq2j+6PO6Y0zJcvzLAFhEFIO3HL0vls9hWLncZbAAbK0mar7oZ4V079I/qPMxg==", 203 | "dev": true, 204 | "dependencies": { 205 | "tslib": "^2.1.0" 206 | } 207 | }, 208 | "node_modules/shell-quote": { 209 | "version": "1.8.1", 210 | "resolved": "https://registry.npmjs.org/shell-quote/-/shell-quote-1.8.1.tgz", 211 | "integrity": "sha512-6j1W9l1iAs/4xYBI1SYOVZyFcCis9b4KCLQ8fgAGG07QvzaRLVVRQvAy85yNmmZSjYjg4MWh4gNvlPujU/5LpA==", 212 | "dev": true, 213 | "funding": { 214 | "url": "https://github.com/sponsors/ljharb" 215 | } 216 | }, 217 | "node_modules/string-width": { 218 | "version": "4.2.3", 219 | "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", 220 | "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", 221 | "dev": true, 222 | "dependencies": { 223 | "emoji-regex": "^8.0.0", 224 | "is-fullwidth-code-point": "^3.0.0", 225 | "strip-ansi": "^6.0.1" 226 | }, 227 | "engines": { 228 | "node": ">=8" 229 | } 230 | }, 231 | "node_modules/strip-ansi": { 232 | "version": "6.0.1", 233 | "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", 234 | "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", 235 | "dev": true, 236 | "dependencies": { 237 | "ansi-regex": "^5.0.1" 238 | }, 239 | "engines": { 240 | "node": ">=8" 241 | } 242 | }, 243 | "node_modules/supports-color": { 244 | "version": "8.1.1", 245 | "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-8.1.1.tgz", 246 | "integrity": "sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==", 247 | "dev": true, 248 | "dependencies": { 249 | "has-flag": "^4.0.0" 250 | }, 251 | "engines": { 252 | "node": ">=10" 253 | }, 254 | "funding": { 255 | "url": "https://github.com/chalk/supports-color?sponsor=1" 256 | } 257 | }, 258 | "node_modules/tree-kill": { 259 | "version": "1.2.2", 260 | "resolved": "https://registry.npmjs.org/tree-kill/-/tree-kill-1.2.2.tgz", 261 | "integrity": "sha512-L0Orpi8qGpRG//Nd+H90vFB+3iHnue1zSSGmNOOCh1GLJ7rUKVwV2HvijphGQS2UmhUZewS9VgvxYIdgr+fG1A==", 262 | "dev": true, 263 | "bin": { 264 | "tree-kill": "cli.js" 265 | } 266 | }, 267 | "node_modules/tslib": { 268 | "version": "2.6.3", 269 | "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.6.3.tgz", 270 | "integrity": "sha512-xNvxJEOUiWPGhUuUdQgAJPKOOJfGnIyKySOc09XkKsgdUV/3E2zvwZYdejjmRgPCgcym1juLH3226yA7sEFJKQ==", 271 | "dev": true 272 | }, 273 | "node_modules/wrap-ansi": { 274 | "version": "7.0.0", 275 | "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz", 276 | "integrity": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==", 277 | "dev": true, 278 | "dependencies": { 279 | "ansi-styles": "^4.0.0", 280 | "string-width": "^4.1.0", 281 | "strip-ansi": "^6.0.0" 282 | }, 283 | "engines": { 284 | "node": ">=10" 285 | }, 286 | "funding": { 287 | "url": "https://github.com/chalk/wrap-ansi?sponsor=1" 288 | } 289 | }, 290 | "node_modules/y18n": { 291 | "version": "5.0.8", 292 | "resolved": "https://registry.npmjs.org/y18n/-/y18n-5.0.8.tgz", 293 | "integrity": "sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA==", 294 | "dev": true, 295 | "engines": { 296 | "node": ">=10" 297 | } 298 | }, 299 | "node_modules/yargs": { 300 | "version": "17.7.2", 301 | "resolved": "https://registry.npmjs.org/yargs/-/yargs-17.7.2.tgz", 302 | "integrity": "sha512-7dSzzRQ++CKnNI/krKnYRV7JKKPUXMEh61soaHKg9mrWEhzFWhFnxPxGl+69cD1Ou63C13NUPCnmIcrvqCuM6w==", 303 | "dev": true, 304 | "dependencies": { 305 | "cliui": "^8.0.1", 306 | "escalade": "^3.1.1", 307 | "get-caller-file": "^2.0.5", 308 | "require-directory": "^2.1.1", 309 | "string-width": "^4.2.3", 310 | "y18n": "^5.0.5", 311 | "yargs-parser": "^21.1.1" 312 | }, 313 | "engines": { 314 | "node": ">=12" 315 | } 316 | }, 317 | "node_modules/yargs-parser": { 318 | "version": "21.1.1", 319 | "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-21.1.1.tgz", 320 | "integrity": "sha512-tVpsJW7DdjecAiFpbIB1e3qxIQsE6NoPc5/eTdrbbIC4h0LVsWhnoa3g+m2HclBIujHzsxZ4VJVA+GUuc2/LBw==", 321 | "dev": true, 322 | "engines": { 323 | "node": ">=12" 324 | } 325 | } 326 | } 327 | } 328 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "stack", 3 | "version": "1.0.1", 4 | "private": true, 5 | "description": "A starter repository for MongoDB, Node.js, and Vue.js, with a local environment based on Docker.", 6 | "scripts": { 7 | "lint-staged-backend": "cd backend && npm run lint-staged", 8 | "lint-staged-frontend": "cd frontend && npm run lint-staged", 9 | "lint-staged": "concurrently \"npm run lint-staged-backend\" \"npm run lint-staged-frontend\"", 10 | "lint-backend": "cd backend && npm run lint", 11 | "lint-frontend": "cd frontend && npm run lint", 12 | "lint": "concurrently \"npm run lint-backend\" \"npm run lint-frontend\"" 13 | }, 14 | "husky": { 15 | "hooks": { 16 | "pre-commit": "npm run lint-staged" 17 | } 18 | }, 19 | "repository": { 20 | "type": "git", 21 | "url": "git+https://github.com/dashersw/stack.git" 22 | }, 23 | "keywords": [], 24 | "author": "Armagan Amcalar ", 25 | "license": "MIT", 26 | "bugs": { 27 | "url": "https://github.com/dashersw/stack/issues" 28 | }, 29 | "homepage": "https://github.com/dashersw/stack#readme", 30 | "devDependencies": { 31 | "concurrently": "^9.1.2", 32 | "husky": "^9.1.7" 33 | } 34 | } 35 | --------------------------------------------------------------------------------