* refactor: ♻️ edit steps * add md5 hash lib * now step ids are generated based on titles and estimation * feat: ✨ edit steps now add steps will be a modal for editing all steps * chore(commitizen): init cz changelog * chore(changelog): init git cliff * feat(edit steps): add a message to alert on the fact that the record may change * feat(task): task link is a normal button now * with the good ids * remove column * autofocus to title * --wip-- [skip ci] * lint * can modify the whole task when recording
66 lines
1.8 KiB
JSON
66 lines
1.8 KiB
JSON
{
|
|
"name": "failwell",
|
|
"version": "1.0.0",
|
|
"private": true,
|
|
"scripts": {
|
|
"dev": "vite",
|
|
"build": "run-p test:types build-only",
|
|
"preview": "vite preview",
|
|
"test:types": "vue-tsc --noEmit -p tsconfig.vitest.json --composite false",
|
|
"test:unit": "vitest",
|
|
"test:ui": "vitest --ui",
|
|
"test": "pnpm lint && pnpm test:types && pnpm test:unit",
|
|
"build-only": "vite build",
|
|
"lint": "eslint . --ext .vue,.js,.jsx,.cjs,.mjs,.ts,.tsx,.cts,.mts --fix --ignore-path .gitignore",
|
|
"format": "prettier --write src/",
|
|
"commit": "cz"
|
|
},
|
|
"dependencies": {
|
|
"@types/md5": "^2.3.5",
|
|
"@vueuse/core": "^10.7.2",
|
|
"@vueuse/math": "^10.7.2",
|
|
"bulma": "^0.9.4",
|
|
"html-to-image": "^1.11.11",
|
|
"md5": "^2.3.0",
|
|
"nanoid": "^5.0.5",
|
|
"pinia": "^2.1.7",
|
|
"pinia-plugin-persistedstate": "^3.2.1",
|
|
"suretype": "^3.3.1",
|
|
"vue": "^3.4.19",
|
|
"vue-router": "^4.2.5"
|
|
},
|
|
"devDependencies": {
|
|
"@faker-js/faker": "^8.4.1",
|
|
"@pinia/testing": "^0.1.3",
|
|
"@rushstack/eslint-patch": "^1.7.2",
|
|
"@tsconfig/node18": "^18.2.2",
|
|
"@types/jsdom": "^21.1.6",
|
|
"@types/node": "^18.19.17",
|
|
"@vitejs/plugin-vue": "^5.0.4",
|
|
"@vitest/browser": "^1.3.0",
|
|
"@vitest/ui": "^1.3.0",
|
|
"@vue/eslint-config-prettier": "^9.0.0",
|
|
"@vue/eslint-config-typescript": "^12.0.0",
|
|
"@vue/test-utils": "^2.4.4",
|
|
"@vue/tsconfig": "^0.5.1",
|
|
"cz-conventional-changelog": "^3.3.0",
|
|
"eslint": "^8.56.0",
|
|
"eslint-plugin-vue": "^9.21.1",
|
|
"jsdom": "^24.0.0",
|
|
"npm-run-all": "^4.1.5",
|
|
"prettier": "^3.2.5",
|
|
"sass": "^1.71.0",
|
|
"typescript": "~5.3.3",
|
|
"vite": "^5.1.3",
|
|
"vite-plugin-pwa": "^0.19.0",
|
|
"vitest": "^1.3.0",
|
|
"vue-tsc": "^1.8.27",
|
|
"webdriverio": "^8.32.2"
|
|
},
|
|
"config": {
|
|
"commitizen": {
|
|
"path": "./node_modules/cz-conventional-changelog"
|
|
}
|
|
}
|
|
}
|