-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
86 lines (86 loc) · 2.48 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
{
"name": "elysia-typewriter",
"version": "0.0.0",
"private": true,
"scripts": {
"commit": "cz",
"dev": "vite",
"build": "pnpm type-check && pnpm build-only",
"preview": "vite preview",
"build-only": "vite build",
"type-check": "vue-tsc --noEmit",
"lint": "pnpm lint-eslint && pnpm lint-stylelint",
"lint-eslint": "eslint . --ext .vue,.js,.jsx,.cjs,.mjs,.ts,.tsx,.cts,.mts --fix --ignore-path .gitignore",
"lint-stylelint": "stylelint ./**/*.{css,sass,scss} --fix --ignore-path .gitignore",
"clean": "rimraf pnpm-lock.yaml node_modules dist",
"release": "semantic-release",
"svgo": "svgo -rf src"
},
"dependencies": {
"@vueuse/core": "^10.1.2",
"element-plus": "^2.4.3",
"lodash": "^4.17.21",
"pinia": "^2.0.28",
"tailwindcss": "^3.2.7",
"vue": "^3.3.9",
"vue-router": "^4.2.5"
},
"devDependencies": {
"@aghap/semantic-release-gh-pages": "^2.0.9",
"@rushstack/eslint-patch": "^1.1.4",
"@tsconfig/node20": "^20.1.2",
"@types/lodash": "^4.14.194",
"@types/node": "^20.10.0",
"@typescript-eslint/eslint-plugin": "^6.13.0",
"@vitejs/plugin-vue": "^4.0.0",
"@vitejs/plugin-vue-jsx": "^3.0.0",
"@vue/eslint-config-prettier": "^8.0.0",
"@vue/eslint-config-typescript": "^12.0.0",
"@vue/tsconfig": "^0.4.0",
"autoprefixer": "^10.4.13",
"commitizen": "^4.3.0",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^8.54.0",
"eslint-plugin-vue": "^9.18.1",
"postcss": "^8.4.31",
"prettier": "^3.1.0",
"rimraf": "^5.0.5",
"sass": "^1.58.3",
"semantic-release": "^20.1.3",
"stylelint": "^15.11.0",
"stylelint-config-prettier": "^9.0.5",
"stylelint-config-sass-guidelines": "^10.0.0",
"stylelint-config-standard-scss": "^11.1.0",
"stylelint-prettier": "^4.1.0",
"svgo": "^3.0.2",
"ts-keycode-enum": "^1.0.6",
"typescript": "^5.3.2",
"unplugin-auto-import": "^0.15.0",
"vite": "^4.0.0",
"vue-tsc": "^1.8.24"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"release": {
"branches": [
"main"
],
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
"@semantic-release/github",
[
"@aghap/semantic-release-gh-pages",
{
"src": "dist",
"ghpBranch": "gh-pages",
"ghpPath": "/",
"message": "chore(release): GitHub Pages release"
}
]
]
}
}