chore: initial commit
This commit is contained in:
62
frontend/packages/mobile/package.json
Normal file
62
frontend/packages/mobile/package.json
Normal file
@@ -0,0 +1,62 @@
|
||||
{
|
||||
"name": "@cordys/mobile",
|
||||
"private": true,
|
||||
"version": "1.0.0",
|
||||
"author": "",
|
||||
"license": "MIT",
|
||||
"type": "module",
|
||||
"scripts": {
|
||||
"dev": "vite --config ./config/vite.config.dev.ts --host",
|
||||
"build": "vue-tsc --noEmit && vite build --config ./config/vite.config.prod.ts",
|
||||
"build:local": "vue-tsc --noEmit && vite build --config ./config/vite.config.prod.ts --mode development",
|
||||
"build:localProd": "vue-tsc --noEmit && vite build --config ./config/vite.config.prod.ts --mode localProd",
|
||||
"type:check": "vue-tsc --noEmit --skipLibCheck -p tsconfig.json",
|
||||
"lint-staged": "npx lint-staged",
|
||||
"lint": "eslint . --ext .vue,.js,.jsx,.cjs,.mjs,.ts,.tsx,.cts,.mts --fix",
|
||||
"lint:styles": "stylelint 'src/**/*.{vue,html,css,scss,less}' --fix"
|
||||
},
|
||||
"dependencies": {
|
||||
"nprogress": "^0.2.0",
|
||||
"typescript": "5.9",
|
||||
"vant": "^4.8.2",
|
||||
"vue": "^3.5.13"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@types/postcss-pxtorem": "^6.1.0",
|
||||
"@vant/auto-import-resolver": "^1.1.0",
|
||||
"@vitejs/plugin-legacy": "^6.0.0",
|
||||
"@vitejs/plugin-vue": "^5.2.1",
|
||||
"@vitejs/plugin-vue-jsx": "^4.1.1",
|
||||
"@vue/babel-plugin-jsx": "^1.2.2",
|
||||
"@vue/test-utils": "^2.4.6",
|
||||
"eruda": "^3.4.1",
|
||||
"less": "4.3.0",
|
||||
"less-loader": "^11.1.4",
|
||||
"postcss-pxtorem": "^6.1.0",
|
||||
"rollup": "4.59.0",
|
||||
"rollup-plugin-visualizer": "^5.12.0",
|
||||
"unplugin-auto-import": "^0.17.5",
|
||||
"unplugin-vue-components": "^0.26.0",
|
||||
"vite": "^6.0.5",
|
||||
"vite-plugin-compression": "^0.5.1",
|
||||
"vite-plugin-eslint": "^1.8.1",
|
||||
"vite-plugin-svg-icons": "^2.0.1",
|
||||
"vite-plugin-vue-setup-extend": "^0.4.0",
|
||||
"vite-svg-loader": "^3.6.0"
|
||||
},
|
||||
"lint-staged": {
|
||||
"*.{js,ts,jsx,tsx}": [
|
||||
"prettier --write",
|
||||
"eslint --fix"
|
||||
],
|
||||
"*.vue": [
|
||||
"stylelint --fix",
|
||||
"prettier --write",
|
||||
"eslint --fix"
|
||||
],
|
||||
"*.{less,css,scss,sass}": [
|
||||
"stylelint --fix --custom-syntax postcss-less",
|
||||
"prettier --write"
|
||||
]
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user