-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
96 lines (96 loc) · 2.99 KB
/
Copy pathpackage.json
File metadata and controls
96 lines (96 loc) · 2.99 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
85
86
87
88
89
90
91
92
93
94
95
96
{
"name": "cafecoder-front",
"version": "3.0.0",
"description": "CafeCoder frontend",
"author": "CafeCoder Team",
"type": "module",
"private": true,
"scripts": {
"dev": "nuxt dev --dotenv .env.local",
"build": "nuxt build",
"start": "nuxt start",
"generate": "nuxt generate",
"lint:nofix": "eslint --ext .js,.ts,.vue --ignore-path .gitignore .",
"lint": "eslint --fix --ext .js,.ts,.vue --ignore-path .gitignore .",
"test": "jest",
"prepare": "husky"
},
"lint-staged": {
"*.{js,ts,vue}": "eslint --fix --ext .js,.ts,.vue --ignore-path .gitignore ."
},
"dependencies": {
"@date-io/dayjs": "^3.0.0",
"@hsorby/vue3-katex": "^0.6.0-rc.5",
"@pinia/nuxt": "^0.5.1",
"@sentry/vue": "^8.27.0",
"@vitejs/plugin-vue": "^5.0.3",
"@vuepic/vue-datepicker": "^8.0.0",
"@vueuse/core": "^11.0.3",
"@vueuse/nuxt": "^11.0.3",
"cheerio": "^1.0.0-rc.12",
"codemirror": "^5.65.18",
"codemirror-editor-vue3": "^2.8.0",
"consola": "^3.1.0",
"dayjs": "^1.11.13",
"dayjs-nuxt": "^2.1.11",
"defu": "^6.1.4",
"highlight.js": "^11.8.0",
"husky": "^9.1.6",
"jszip": "^3.7.1",
"katex": "^0.16.10",
"lodash.camelcase": "^4.3.0",
"lodash.isobject": "^3.0.2",
"lodash.mapkeys": "^4.6.0",
"lodash.mapvalues": "^4.6.0",
"lodash.snakecase": "^4.1.1",
"markdown-it": "^14.0.0",
"markdown-it-attrs": "^4.1.6",
"markdown-it-footnote": "^4.0.0",
"markdown-it-highlightjs": "^4.0.1",
"markdown-it-link-attributes": "^4.0.1",
"markdown-it-mark": "^4.0.0",
"markdown-it-sub": "^2.0.0",
"markdown-it-texmath": "^1.0.0",
"nuxt": "^3.10.1",
"pinia": "^2.1.3",
"vite-plugin-vuetify": "^2.0.1",
"vue-gtag": "^2.0.1",
"vue-router": "^4.2.1",
"vuetify": "^3.7.2"
},
"devDependencies": {
"@mdi/font": "^7.2.96",
"@nuxt/eslint-config": "^0.2.0",
"@nuxt/types": "^2.17.0",
"@nuxtjs/eslint-module": "^4.1.0",
"@nuxtjs/stylelint-module": "^5.1.0",
"@types/codemirror": "^5.60.8",
"@types/katex": "^0.16.0",
"@types/lodash.camelcase": "^4.3.6",
"@types/lodash.isarray": "^4.0.6",
"@types/lodash.isobject": "^3.0.6",
"@types/lodash.mapkeys": "^4.6.6",
"@types/lodash.mapvalues": "^4.6.6",
"@types/lodash.snakecase": "^4.1.6",
"@types/markdown-it": "^13.0.7",
"@types/markdown-it-attrs": "^4.1.0",
"@types/markdown-it-footnote": "^3.0.0",
"@types/markdown-it-link-attributes": "^3.0.1",
"@types/node": "^20.11.16",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"@vue/eslint-config-prettier": "^9.0.0",
"babel-jest": "^29.7.0",
"eslint": "^8.41.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-vuetify": "^2.0.2",
"jest": "^29.7.0",
"lint-staged": "^15.2.2",
"prettier": "^3.2.5",
"sass": "^1.62.1",
"sass-loader": "^14.1.0",
"stylelint": "^16.2.1"
}
}