-
Notifications
You must be signed in to change notification settings - Fork 58
/
Copy pathpackage.json
80 lines (80 loc) · 2.12 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
{
"private": true,
"scripts": {
"build": "nuxt build",
"dev": "nuxt dev",
"generate": "nuxt generate",
"chpwd": "gulp change-passwd",
"genimg": "gulp generate-image-map",
"downimg": "gulp download-image",
"subimg": "gulp substitute-image",
"lint": "eslint --fix --ext .ts,vue --ignore-path .gitignore .",
"preview": "nuxt 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",
"katex": "^0.16.7",
"marked": "^4.2.12",
"monaco-editor": "^0.33.0",
"pangu": "^4.0.7",
"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/katex": "^0.16.0",
"@types/lodash": "^4.14.182",
"@types/marked": "^4.0.8",
"@types/multiparty": "^0.0.33",
"@types/pangu": "^4.0.0",
"@types/prompts": "^2.4.4",
"@typescript-eslint/eslint-plugin": "^5.22.0",
"@typescript-eslint/parser": "^5.22.0",
"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": "^6.0.0",
"nuxt": "^3.9.3",
"postcss-html": "^1.4.1",
"prompts": "^2.4.2",
"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.9.1",
"typescript": "^5.1.6",
"vite-plugin-eslint": "^1.6.0"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{ts,vue}": [
"eslint --fix --ignore-path .gitignore --ignore-path .eslintignore"
],
"*.{scss,vue}": [
"stylelint --fix --ignore-path .gitignore"
]
},
"engines": {
"node": "18.x"
}
}