-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
102 lines (102 loc) · 3.11 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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
{
"name": "gropius-frontend",
"version": "0.0.0",
"private": true,
"scripts": {
"dev": "vite",
"build": "vue-tsc --noEmit && vite build",
"preview": "vite preview",
"lint": "eslint . --fix --ignore-path .gitignore",
"codegen": "graphql-codegen --config codegen.yaml",
"format": "prettier --write \"**/*.{ts,json,js,tsx,jsx,vue}\""
},
"dependencies": {
"@bytemd/plugin-gfm": "^1.21.0",
"@bytemd/vue-next": "^1.21.0",
"@github/relative-time-element": "^4.3.1",
"@github/task-lists-element": "^2.0.5",
"@gropius/graph-editor": "^0.0.1",
"@material/material-color-utilities": "^0.2.7",
"@mdi/font": "7.4.47",
"@vee-validate/yup": "^4.12.5",
"@vueuse/core": "^10.7.2",
"async-mutex": "^0.4.1",
"axios": "^1.6.7",
"codemirror": "^5.65.14",
"core-js": "^3.35.1",
"github-markdown-css": "^5.5.1",
"graphql": "^16.8.1",
"graphql-request": "^6.1.0",
"jtd": "^0.1.1",
"jwt-decode": "^4.0.0",
"mitt": "^3.0.1",
"pinia": "^2.1.7",
"reflect-metadata": "^0.2.1",
"remark": "^15.0.1",
"roboto-fontface": "*",
"sprotty": "^1.1.0",
"strip-markdown": "^6.0.0",
"uuid": "^9.0.1",
"vee-validate": "^4.12.5",
"vue": "3.4.17",
"vue-router": "^4.2.5",
"vuetify": "^3.5.3",
"webfontloader": "^1.6.28",
"yup": "^1.3.3"
},
"devDependencies": {
"@babel/types": "^7.23.9",
"@graphql-codegen/cli": "^5.0.2",
"@graphql-codegen/typescript": "^4.0.4",
"@graphql-codegen/typescript-document-nodes": "^4.0.4",
"@graphql-codegen/typescript-graphql-request": "^6.2.0",
"@graphql-codegen/typescript-operations": "^4.1.2",
"@types/node": "^20.11.17",
"@types/uuid": "^9.0.8",
"@types/webfontloader": "^1.6.38",
"@vitejs/plugin-vue": "^5.0.4",
"@vue/eslint-config-typescript": "^12.0.0",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-vue": "^9.21.1",
"prettier": "^3.2.5",
"sass": "^1.70.0",
"typescript": "^5.3.3",
"vite": "^5.1.1",
"vite-plugin-vuetify": "^2.0.1",
"vue-tsc": "^1.8.27"
},
"workspaces": [
"packages/*"
],
"prettier": {
"tabWidth": 4,
"trailingComma": "none",
"printWidth": 120
},
"eslintConfig": {
"env": {
"node": true
},
"root": true,
"parser": "vue-eslint-parser",
"parserOptions": {
"parser": "@typescript-eslint/parser"
},
"extends": [
"plugin:vue/vue3-recommended",
"prettier",
"eslint:recommended",
"@vue/typescript/recommended"
],
"plugins": [
"@typescript-eslint",
"prettier"
],
"rules": {
"prettier/prettier": "error",
"vue/no-mutating-props": "warn"
}
}
}