You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
103 lines
3.1 KiB
103 lines
3.1 KiB
{
|
|
"name": "matrix-spray-web",
|
|
"type": "module",
|
|
"version": "0.0.8",
|
|
"description": "",
|
|
"author": "",
|
|
"license": "ISC",
|
|
"keywords": [],
|
|
"main": "index.js",
|
|
"scripts": {
|
|
"dev": "concurrently -n server,client -c green,blue \"node server/index.js\" \"vite --mode dev\"",
|
|
"test": "vite --mode test",
|
|
"prod": "vite --mode prod",
|
|
"pre": "vite --mode pre",
|
|
"build": "vite build --mode dev",
|
|
"build:test": "vite build --mode test",
|
|
"build:prod:patch": "node increment-version.js patch && vite build --mode prod",
|
|
"build:prod:minor": "node increment-version.js minor && vite build --mode prod",
|
|
"build:prod:major": "node increment-version.js major && vite build --mode prod",
|
|
"build:pre": "vite build --mode pre",
|
|
"build:dev": "vite build --mode dev",
|
|
"prepare": "husky",
|
|
"lint:lint-staged": "lint-staged",
|
|
"lint": "vue-tsc --noEmit --skipLibCheck && eslint",
|
|
"eslint": "eslint --fix --ext .ts,.vue src",
|
|
"prettier": "prettier --write ."
|
|
},
|
|
"dependencies": {
|
|
"@element-plus/icons-vue": "^2.3.1",
|
|
"autoprefixer": "^10.4.20",
|
|
"axios": "1.8.2",
|
|
"chart.js": "^3.9.1",
|
|
"cnchar": "^3.2.6",
|
|
"cnchar-draw": "^3.2.6",
|
|
"cnchar-idiom": "^3.2.6",
|
|
"cnchar-order": "^3.2.6",
|
|
"cnchar-poly": "^3.2.6",
|
|
"cnchar-trad": "^3.2.6",
|
|
"cnchar-words": "^3.2.6",
|
|
"cnchar-xhy": "^3.2.6",
|
|
"cssnano": "^7.0.6",
|
|
"echarts": "^5.6.0",
|
|
"element-plus": "^2.9.5",
|
|
"express": "^5.1.0",
|
|
"konva": "^9.3.18",
|
|
"lodash": "^4.17.21",
|
|
"nanoid": "^5.1.5",
|
|
"pinia": "^3.0.1",
|
|
"pinia-plugin-persistedstate": "^4.2.0",
|
|
"pinyin": "^2.11.2",
|
|
"postcss": "^8.5.3",
|
|
"postcss-aspect-ratio-mini": "^1.1.0",
|
|
"postcss-import": "^16.1.0",
|
|
"postcss-px-to-viewport-8-plugin": "^1.2.5",
|
|
"postcss-url": "^10.1.3",
|
|
"postcss-viewport-units": "^0.1.6",
|
|
"postcss-write-svg": "^3.0.1",
|
|
"vue": "^3.5.13",
|
|
"vue-chart-3": "^3.1.8",
|
|
"vue-router": "^4.5.0",
|
|
"ws": "^8.18.1"
|
|
},
|
|
"devDependencies": {
|
|
"@antfu/eslint-config": "^4.3.0",
|
|
"@commitlint/cli": "^19.7.1",
|
|
"@commitlint/config-conventional": "^19.7.1",
|
|
"@types/node": "^22.13.5",
|
|
"@types/web": "^0.0.235",
|
|
"@typescript-eslint/eslint-plugin": "^8.25.0",
|
|
"@typescript-eslint/parser": "^8.25.0",
|
|
"@vitejs/plugin-vue": "^5.2.1",
|
|
"@vue/eslint-config-prettier": "^10.2.0",
|
|
"concurrently": "^9.1.2",
|
|
"eslint": "^9.21.0",
|
|
"eslint-config-prettier": "^10.0.2",
|
|
"eslint-plugin-prettier": "^5.2.3",
|
|
"eslint-plugin-vue": "^9.32.0",
|
|
"husky": "^9.1.7",
|
|
"lint-staged": "^15.4.3",
|
|
"prettier": "^3.5.2",
|
|
"sass": "^1.85.1",
|
|
"semver": "^7.7.1",
|
|
"typescript": "^5.7.3",
|
|
"unplugin-auto-import": "^19.1.1",
|
|
"unplugin-vue-components": "^28.4.1",
|
|
"vite": "6.2.6",
|
|
"vite-plugin-compression": "^0.5.1",
|
|
"vite-plugin-eslint": "^1.8.1",
|
|
"vue-tsc": "^2.2.4"
|
|
},
|
|
"husky": {
|
|
"hooks": {
|
|
"pre-commit": "lint-staged"
|
|
}
|
|
},
|
|
"lint-staged": {
|
|
"*.{js,jsx,vue,ts,tsx}": [
|
|
"eslint --fix",
|
|
"prettier --write",
|
|
"lint-staged"
|
|
]
|
|
}
|
|
}
|