-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 1.89 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 1.89 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
{
"type": "module",
"private": true,
"packageManager": "pnpm@10.18.0",
"engines": {
"node": ">=24.11.0",
"pnpm": ">=10.0.0"
},
"scripts": {
"prepare": "husky install",
"build": "nuxt build",
"dev": "nuxt dev",
"generate": "nuxt generate",
"preview": "nuxt preview",
"postinstall": "nuxt prepare",
"lint": "eslint --fix . --ext .js,.ts,.vue ./"
},
"dependencies": {
"@pinia/nuxt": "^0.11.2",
"@traptitech/markdown-it-spoiler": "^1.1.6",
"@types/debug": "^4.1.12",
"@vuestic/nuxt": "^1.0.22",
"@vueuse/core": "^11.3.0",
"@vueuse/firebase": "^11.3.0",
"ansi-colors": "^4.1.3",
"debug": "^4.4.0",
"firebase": "^12.3.0",
"firebase-admin": "^13.5.0",
"google-auth-library": "^10.4.0",
"he-tree-vue": "3",
"idb": "^8.0.1",
"konva": "^9.3.18",
"markdown-it": "^14.1.0",
"markdown-it-abbr": "^2.0.0",
"markdown-it-anchor": "^9.2.0",
"markdown-it-attribution": "^0.1.4",
"markdown-it-footnote": "^4.0.0",
"markdown-it-sub": "^2.0.0",
"markdown-it-sup": "^2.0.0",
"markdown-it-task-lists": "^2.1.1",
"pinia": "^3.0.3",
"vue-konva": "^3.0.2",
"vuestic-ui": "^1.10.3"
},
"devDependencies": {
"@antfu/eslint-config": "^3.10.0",
"@babel/eslint-parser": "^7.25.9",
"@types/gapi": "^0.0.47",
"@types/gapi.client.drive-v3": "^0.0.4",
"@types/google.accounts": "^0.0.14",
"@types/google.picker": "^0.0.42",
"@types/node": "^22.10.2",
"@typescript-eslint/eslint-plugin": "^8.18.1",
"@typescript-eslint/parser": "^8.18.1",
"eslint": "^9.16.0",
"eslint-plugin-format": "^1.0.2",
"husky": "^9.1.7",
"lint-staged": "^15.2.11",
"material-design-icons-iconfont": "^6.7.0",
"nuxt": "^3.18.0",
"sass": "^1.83.0",
"sass-loader": "^16.0.4",
"typescript": "^5.7.2"
},
"lint-staged": {
"*.{js,ts,vue}": "eslint --cache --fix"
}
}