-
Notifications
You must be signed in to change notification settings - Fork 17
Expand file tree
/
Copy pathpackage.json
More file actions
84 lines (84 loc) · 2.16 KB
/
Copy pathpackage.json
File metadata and controls
84 lines (84 loc) · 2.16 KB
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
{
"name": "app",
"version": "0.2.2",
"license": "GPL-3.0",
"scripts": {
"dev": "vite --mode development",
"build:dev": "vite build --mode development",
"build:pro": "vite build --mode production",
"build": "vite build",
"serve": "vite preview",
"lint": "eslint src --fix --ext .ts,.tsx,.vue,.js,.jsx",
"prettier": "prettier --write .",
"prepare": "husky install"
},
"dependencies": {
"@chinese-fonts/dyh": "^1.1.0",
"@kangc/v-md-editor": "^2.3.15",
"@types/file-saver": "^2.0.5",
"@types/qs": "^6.9.7",
"@vicons/fluent": "^0.12.0",
"@vicons/ionicons5": "^0.12.0",
"@vitejs/plugin-vue-jsx": "^2.0.0",
"animate.css": "^4.1.1",
"axios": "^0.24.0",
"highlight.js": "^11.6.0",
"lodash": "^4.17.21",
"moment": "^2.29.4",
"naive-ui": "^2.30.8",
"nprogress": "^0.2.0",
"pinia": "^2.0.0-rc.10",
"qs": "^6.10.3",
"vfonts": "^0.1.0",
"video.js": "^7.20.2",
"vue": "^3.2.2",
"vue-clipboard3": "^2.0.0",
"vue-router": "4",
"vue3-lottie": "^2.2.5"
},
"devDependencies": {
"@babel/types": "^7.16.0",
"@types/node": "^16.11.10",
"@types/nprogress": "^0.2.0",
"@types/video.js": "^7.3.45",
"@typescript-eslint/eslint-plugin": "^5.4.0",
"@typescript-eslint/parser": "^5.4.0",
"@vitejs/plugin-vue": "^1.2.5",
"@vue/compiler-sfc": "^3.0.5",
"autoprefixer": "^10.4.7",
"dart-sass": "^1.25.0",
"eslint": "^8.3.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-vue": "^8.1.1",
"husky": "^7.0.4",
"lint-staged": "^12.1.2",
"mrm": "^3.0.10",
"postcss": "^8.4.14",
"prettier": "^2.4.1",
"sass": "^1.44.0",
"tailwindcss": "^3.1.4",
"typescript": "^4.5.2",
"vite": "^3.0.9",
"vite-plugin-compression": "^0.3.6",
"vite-plugin-eslint": "^1.3.0",
"vue-tsc": "^0.0.24"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,jsx,vue,ts,tsx}": [
"yarn lint",
"prettier --write",
"git add"
]
},
"config": {
"commitizen": {
"path": "node_modules/cz-customizable"
}
}
}