123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126 |
- {
- "name": "teachcloud-mark-tool",
- "description": "teachcloud mark tool",
- "version": "1.0.0",
- "main": "./out/main/index.js",
- "author": "chulinice",
- "license": "MIT",
- "scripts": {
- "start": "electron-vite dev",
- "dev": "electron-vite dev --watch",
- "format": "prettier --write .",
- "report": "cross-env REPORT=true npm run build",
- "preview": "npm run build && vite preview --host",
- "typecheck:node": "tsc --noEmit --skipLibCheck -p tsconfig.node.json --composite false",
- "typecheck:web": "vue-tsc --noEmit --skipLibCheck -p tsconfig.web.json --composite false",
- "typecheck": "npm run typecheck:node && npm run typecheck:web",
- "lint-staged": "npx lint-staged",
- "prepare": "husky install",
- "postinstall": "electron-builder install-app-deps",
- "build": "npm run typecheck && electron-vite build",
- "build:unpack": "npm run build && electron-builder --dir",
- "build:win": "npm run build && electron-builder --win --x64",
- "build:mac": "npm run build && electron-builder --mac",
- "build:linux": "npm run build && electron-builder --linux"
- },
- "lint-staged": {
- "*.{js,ts,jsx,tsx}": [
- "prettier --write",
- "eslint --fix"
- ],
- "*.vue": [
- "prettier --write",
- "eslint --fix"
- ],
- "*.{less,css}": [
- "prettier --write"
- ]
- },
- "dependencies": {
- "@arco-design/web-vue": "^2.44.7",
- "@electron-toolkit/preload": "^3.0.0",
- "@electron-toolkit/utils": "^3.0.0",
- "@types/vue-ls": "^3.2.7",
- "@vueuse/core": "^9.3.0",
- "axios": "^0.24.0",
- "crypto-js": "^4.2.0",
- "dayjs": "^1.11.5",
- "electron-log": "^5.1.5",
- "gm": "^1.25.0",
- "image-size": "^1.1.1",
- "js-md5": "^0.8.3",
- "lodash": "^4.17.21",
- "mitt": "^3.0.0",
- "nprogress": "^0.2.0",
- "pdfkit": "^0.15.0",
- "pg-hstore": "^2.3.4",
- "pinia": "^2.0.23",
- "pinia-plugin-persistedstate": "^3.2.1",
- "query-string": "^8.0.3",
- "sequelize": "^6.37.3",
- "sqlite3": "5.1.6",
- "vue": "^3.2.40",
- "vue-ls": "^4.2.0",
- "vue-router": "^4.0.14"
- },
- "devDependencies": {
- "@arco-plugins/vite-vue": "^1.4.5",
- "@commitlint/cli": "^17.1.2",
- "@commitlint/config-conventional": "^17.1.0",
- "@electron-toolkit/eslint-config": "^1.0.2",
- "@electron-toolkit/eslint-config-ts": "^1.0.1",
- "@electron-toolkit/tsconfig": "^1.0.1",
- "@rushstack/eslint-patch": "^1.7.1",
- "@types/crypto-js": "^4.2.1",
- "@types/gm": "^1.25.4",
- "@types/lodash": "^4.14.186",
- "@types/mockjs": "^1.0.7",
- "@types/node": "^18.19.9",
- "@types/nprogress": "^0.2.0",
- "@types/pdfkit": "^0.13.4",
- "@typescript-eslint/eslint-plugin": "^5.40.0",
- "@typescript-eslint/parser": "^5.40.0",
- "@vitejs/plugin-vue": "^5.0.3",
- "@vitejs/plugin-vue-jsx": "^2.0.1",
- "@vue/babel-plugin-jsx": "^1.1.1",
- "@vue/eslint-config-prettier": "^9.0.0",
- "@vue/eslint-config-typescript": "^12.0.0",
- "consola": "^2.15.3",
- "cross-env": "^7.0.3",
- "electron": "^28.2.0",
- "electron-builder": "^24.9.1",
- "electron-vite": "^2.2.0",
- "eslint": "^8.56.0",
- "eslint-config-airbnb-base": "^15.0.0",
- "eslint-config-prettier": "^8.5.0",
- "eslint-import-resolver-typescript": "^3.5.1",
- "eslint-plugin-import": "^2.26.0",
- "eslint-plugin-prettier": "^4.2.1",
- "eslint-plugin-vue": "^9.20.1",
- "husky": "^8.0.1",
- "less": "^4.1.3",
- "lint-staged": "^13.0.3",
- "mockjs": "^1.1.0",
- "postcss-html": "^1.5.0",
- "prettier": "^2.8.8",
- "rollup": "^3.9.1",
- "rollup-plugin-visualizer": "^5.8.2",
- "typescript": "^4.9.5",
- "unplugin-vue-components": "^0.24.1",
- "vite": "~4.3.9",
- "vite-plugin-compression": "^0.5.1",
- "vite-plugin-eslint": "^1.8.1",
- "vite-plugin-imagemin": "^0.6.1",
- "vite-svg-loader": "^3.6.0",
- "vue": "^3.4.15",
- "vue-tsc": "^1.8.27"
- },
- "engines": {
- "node": ">=14.0.0"
- },
- "resolutions": {
- "bin-wrapper": "npm:bin-wrapper-china",
- "rollup": "^2.56.3",
- "gifsicle": "5.2.0"
- }
- }
|