This repository has been archived by the owner on Jan 15, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
74 lines (74 loc) · 2.07 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
{
"name": "picw",
"version": "0.0.0",
"author": {
"name": "Flysky12138",
"email": "[email protected]",
"url": "https://github.com/Flysky12138"
},
"description": "A site for uploading images to github",
"license": "GPL-3.0-only",
"scripts": {
"dev": "vite --open",
"serve": "vite preview",
"build": "vite build",
"lint": "eslint . --ext .vue,.js,.jsx,.cjs,.mjs,.ts,.tsx,.cts,.mts --fix --ignore-path .gitignore",
"preview": "vite preview --port 4173",
"type-check": "vue-tsc --noEmit",
"prepare": "husky install",
"cz": "cz"
},
"lint-staged": {
"*.{ts,vue,cjs}": "eslint --fix",
"*.{md,html,scss,json}": "prettier --write"
},
"dependencies": {
"@mdi/font": "5.9.55",
"axios": "^1.0.0",
"blueimp-md5": "^2.19.0",
"js-beautify": "^1.14.3",
"pinia": "^2.0.21",
"pinia-plugin-persistedstate": "^2.2.0",
"prismjs": "^1.29.0",
"roboto-fontface": "*",
"vue": "^3.2.38",
"vue-prism-editor": "^2.0.0-alpha.2",
"vue-router": "^4.1.5",
"vue-showdown": "^3.3.0",
"vuetify": "3.0.0-beta.14",
"webfontloader": "^1.0.0"
},
"devDependencies": {
"@commitlint/cli": "^17.1.2",
"@commitlint/config-conventional": "^17.1.0",
"@rushstack/eslint-patch": "^1.1.4",
"@types/blueimp-md5": "^2.18.0",
"@types/js-beautify": "^1.13.3",
"@types/node": "^16.11.56",
"@types/prismjs": "^1.26.0",
"@types/webfontloader": "^1.0.0",
"@vitejs/plugin-vue": "^3.1.2",
"@vue/eslint-config-prettier": "^7.0.0",
"@vue/eslint-config-typescript": "^11.0.0",
"@vue/tsconfig": "^0.1.3",
"commitizen": "^4.2.5",
"cz-git": "^1.3.11",
"eslint": "^8.22.0",
"eslint-plugin-vue": "^9.3.0",
"husky": "^8.0.1",
"lint-staged": "^13.0.3",
"prettier": "^2.7.1",
"sass": "^1.55.0",
"typescript": "~4.7.4",
"vite": "^3.0.9",
"vite-plugin-pwa": "^0.13.1",
"vite-plugin-vuetify": "^1.0.0-alpha.17",
"vue-cli-plugin-vuetify": "~2.5.8",
"vue-tsc": "^1.0.7"
},
"config": {
"commitizen": {
"path": "node_modules/cz-git"
}
}
}