forked from yunyuyuan/nuxt3-blog
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
71 lines (71 loc) · 1.85 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
{
"private": true,
"scripts": {
"build": "nuxt build",
"dev": "nuxt dev",
"generate": "gulp generate",
"chpwd": "gulp chpwd",
"lint": "eslint --fix --ext .ts,vue --ignore-path .gitignore .",
"preview": "vite preview",
"prepare": "husky install"
},
"dependencies": {
"axios": "^0.24.0",
"clipboard": "^2.0.10",
"crypto-js": "^4.1.1",
"dayjs": "^1.10.7",
"headroom.js": "^0.12.0",
"highlight.js": "^11.3.1",
"monaco-editor": "^0.33.0",
"pangu": "^4.0.7",
"showdown": "^1.9.1",
"viewerjs": "^1.10.5"
},
"devDependencies": {
"@nuxtjs/eslint-config-typescript": "^10.0.0",
"@types/crypto-js": "^4.1.1",
"@types/gulp": "^4.0.9",
"@types/headroom.js": "^0.12.2",
"@types/lodash": "^4.14.182",
"@types/multiparty": "^0.0.33",
"@typescript-eslint/eslint-plugin": "^5.22.0",
"@typescript-eslint/parser": "^5.22.0",
"@vercel/node": "^2.5.8",
"colors": "^1.4.0",
"eslint": "^8.15.0",
"eslint-plugin-vue": "^8.7.1",
"form-data": "^4.0.0",
"gulp": "^4.0.2",
"husky": "^7.0.0",
"lint-staged": "^12.4.1",
"lodash": "^4.17.21",
"mongodb": "^4.12.0",
"multiparty": "^4.2.3",
"nuxt": "^3.0.0",
"postcss-html": "^1.4.1",
"prompt": "^1.3.0",
"rollup-pluginutils": "^2.8.2",
"sass": "^1.43.4",
"stylelint": "^14.8.2",
"stylelint-config-recommended-scss": "^6.0.0",
"stylelint-config-recommended-vue": "^1.4.0",
"stylelint-config-standard-scss": "^3.0.0",
"tinify": "^1.7.1",
"ts-node": "^10.7.0",
"typescript": "^4.6.4",
"vite-plugin-eslint": "^1.6.0"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{ts,vue}": [
"eslint --fix --ignore-path .gitignore"
],
"*.{scss,vue}": [
"stylelint --fix --ignore-path .gitignore"
]
}
}