-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 loc) · 1.62 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
{
"name": "nuxt-app",
"private": true,
"type": "module",
"scripts": {
"build": "nuxt build",
"dev": "nuxt dev",
"generate": "nuxt generate",
"preview": "nuxt preview",
"postinstall": "nuxt prepare",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"prepare": "husky",
"codegen": "graphql-codegen --config codegen.yml"
},
"dependencies": {
"@mdi/font": "^7.4.47",
"@pinia/nuxt": "^0.5.1",
"@shelacek/ubjson": "^1.1.1",
"@vuelidate/core": "^2.0.3",
"@vuelidate/validators": "^2.0.4",
"async-mutex": "^0.5.0",
"axios": "^1.7.4",
"crc32": "^0.2.2",
"fast-sort": "^3.4.0",
"lodash": "^4.17.21",
"markdown-it": "^14.1.0",
"moment": "^2.30.1",
"notivue": "^2.4.4",
"nuxt": "^3.12.4",
"nuxt-monaco-editor": "^1.2.9",
"pinia": "^2.1.7",
"pinia-plugin-persistedstate": "^3.2.1",
"pretty-bytes": "^6.1.1",
"prismjs": "^1.29.0",
"validator": "^13.12.0",
"vue": "^3.4.27",
"vue-router": "^4.3.2",
"yaml": "^2.4.2"
},
"devDependencies": {
"@graphql-codegen/cli": "^5.0.2",
"@nuxt/eslint": "^0.3.13",
"@nuxt/eslint-config": "^0.3.10",
"@pinia-plugin-persistedstate/nuxt": "^1.2.0",
"@types/lodash": "^4.17.4",
"@types/markdown-it": "^14.1.1",
"@types/prismjs": "^1.26.4",
"@types/validator": "^13.11.10",
"eslint": "^8.57.0",
"husky": "^9.0.11",
"lint-staged": "^15.2.10",
"sass": "^1.77.2",
"typescript": "^5.4.5",
"vite-plugin-eslint2": "^4.4.0",
"vite-plugin-vuetify": "^2.0.3",
"vuetify": "^3.6.10"
},
"lint-staged": {
"*": "npm run lint:fix"
}
}