2022-01-01 14:07:34 +01:00
|
|
|
{
|
2022-01-08 13:12:15 +01:00
|
|
|
"name": "explorata",
|
|
|
|
"version": "0.1.0",
|
|
|
|
"private": true,
|
2022-01-01 14:07:34 +01:00
|
|
|
"scripts": {
|
2022-12-05 15:05:46 +01:00
|
|
|
"dev": "vite --host",
|
2022-11-29 17:23:37 +01:00
|
|
|
"build": "vite build",
|
|
|
|
"serve": "vite preview",
|
2022-11-29 17:31:01 +01:00
|
|
|
"lint": "eslint --ext .js,.vue --ignore-path .gitignore --fix src",
|
2022-12-23 12:27:58 +01:00
|
|
|
"format": "prettier . --write",
|
|
|
|
"coverage": "vitest run --coverage",
|
|
|
|
"test": "vitest"
|
2022-01-08 13:12:15 +01:00
|
|
|
},
|
|
|
|
"dependencies": {
|
2024-04-27 13:09:23 +02:00
|
|
|
"@vitejs/plugin-vue": "3.2.0",
|
|
|
|
"install": "0.13.0",
|
|
|
|
"pinia": "2.0.27",
|
|
|
|
"vite": "^3.2.10",
|
2022-12-02 17:27:30 +01:00
|
|
|
"vue": "3.2"
|
2022-01-01 14:07:34 +01:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
2022-12-23 12:27:58 +01:00
|
|
|
"@testing-library/vue": "^6.6.1",
|
2022-11-29 17:23:37 +01:00
|
|
|
"eslint": "^8.28.0",
|
|
|
|
"eslint-config-prettier": "^8.5.0",
|
|
|
|
"eslint-plugin-vue": "^9.8.0",
|
2022-12-23 12:27:58 +01:00
|
|
|
"happy-dom": "^8.1.1",
|
|
|
|
"prettier": "2.8.0",
|
|
|
|
"vitest": "^0.26.2"
|
2022-01-08 13:12:15 +01:00
|
|
|
},
|
|
|
|
"eslintConfig": {
|
|
|
|
"root": true,
|
|
|
|
"env": {
|
|
|
|
"node": true
|
|
|
|
},
|
|
|
|
"extends": [
|
|
|
|
"plugin:vue/essential",
|
|
|
|
"eslint:recommended"
|
|
|
|
],
|
|
|
|
"parserOptions": {
|
|
|
|
"parser": "babel-eslint"
|
|
|
|
},
|
|
|
|
"rules": {}
|
|
|
|
},
|
|
|
|
"browserslist": [
|
|
|
|
"> 1%",
|
|
|
|
"last 2 versions",
|
|
|
|
"not dead"
|
|
|
|
]
|
2022-01-01 14:07:34 +01:00
|
|
|
}
|