2021-02-24 06:04:09 +08:00
|
|
|
{
|
|
|
|
"name": "vite-vue2-example",
|
|
|
|
"version": "1.0.0",
|
|
|
|
"description": "Example project for a Vue 2 SPA using Vite and composition API",
|
|
|
|
"main": "index.ts",
|
|
|
|
"scripts": {
|
|
|
|
"dev": "vite",
|
|
|
|
"build": "vite build",
|
2021-02-25 18:19:35 +08:00
|
|
|
"lint": "eslint './src/**/*.{js,ts,tsx,vue,md}'",
|
|
|
|
"lint:fix": "eslint './src/**/*.{js,ts,tsx,vue,md}' --fix"
|
2021-02-24 06:04:09 +08:00
|
|
|
},
|
|
|
|
"dependencies": {
|
|
|
|
"@vue/composition-api": "1.0.0-rc.2",
|
|
|
|
"@vueuse/core": "4.2.2",
|
|
|
|
"core-js": "3.9.0",
|
|
|
|
"typescript": "4.1.5",
|
2021-02-27 06:12:33 +08:00
|
|
|
"vue": "2.6.12",
|
|
|
|
"vue-router": "3.5.1"
|
2021-02-24 06:04:09 +08:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
|
|
|
"@typescript-eslint/eslint-plugin": "4.15.2",
|
|
|
|
"@typescript-eslint/parser": "4.15.2",
|
|
|
|
"@vue/eslint-config-prettier": "6.0.0",
|
|
|
|
"@vue/eslint-config-typescript": "7.0.0",
|
|
|
|
"eslint": "7.20.0",
|
|
|
|
"eslint-plugin-prettier": "^3.3.1",
|
|
|
|
"eslint-plugin-vue": "7.6.0",
|
|
|
|
"prettier": "2.2.1",
|
|
|
|
"vite": "2.0.2",
|
|
|
|
"vite-plugin-components": "0.7.1",
|
|
|
|
"vite-plugin-vue2": "1.2.1",
|
|
|
|
"vite-plugin-windicss": "0.4.11"
|
|
|
|
},
|
|
|
|
"repository": {
|
|
|
|
"type": "git",
|
|
|
|
"url": "git+https://github.com/lstoeferle/vite-vue2-example.git"
|
|
|
|
},
|
|
|
|
"author": "lstoeferle",
|
|
|
|
"license": "MIT"
|
|
|
|
}
|