-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 2.43 KB
/
Copy pathpackage.json
File metadata and controls
74 lines (74 loc) · 2.43 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
{
"name": "plotty",
"version": "0.0.0",
"private": true,
"type": "module",
"scripts": {
"dev": "vite",
"netlify-dev": "netlify dev",
"build": "run-p type-check \"build-only {@}\" --",
"preview": "vite preview",
"build-only": "vite build",
"type-check": "vue-tsc --build --force",
"lint": "eslint . --ext .vue,.js,.jsx,.cjs,.mjs,.ts,.tsx,.cts,.mts --fix --ignore-path .gitignore",
"format": "prettier --write src/",
"codegen": "graphql-codegen --config codegen.ts"
},
"dependencies": {
"@apollo/client": "^3.9.4",
"@headlessui/vue": "^1.7.19",
"@vue/apollo-composable": "^4.0.1",
"@vueuse/core": "^10.7.2",
"best-effort-json-parser": "^1.0.1",
"date-fns": "^3.3.1",
"eventsource-parser": "^1.1.2",
"graphql": "^16.8.1",
"graphql-tag": "^2.12.6",
"pinia": "^2.1.7",
"uuid": "^9.0.1",
"vue": "^3.4.15",
"vue-advanced-cropper": "^2.8.8",
"vue-i18n": "^9.10.1",
"vue-markdown-render": "^2.1.1",
"vue-router": "^4.2.5",
"vue3-dndrop": "github:novikov-dv/vue3-dndrop"
},
"devDependencies": {
"@graphql-codegen/add": "^5.0.2",
"@graphql-codegen/cli": "^5.0.2",
"@graphql-codegen/schema-ast": "^4.0.2",
"@graphql-codegen/typescript": "^4.0.4",
"@graphql-codegen/typescript-operations": "^4.1.2",
"@graphql-codegen/typescript-vue-apollo": "^4.1.1",
"@intlify/unplugin-vue-i18n": "^2.0.0",
"@rushstack/eslint-patch": "^1.7.2",
"@tailwindcss/forms": "^0.5.7",
"@tailwindcss/typography": "^0.5.10",
"@tsconfig/node20": "^20.1.2",
"@types/node": "^20.11.16",
"@types/uuid": "^9.0.8",
"@vitejs/plugin-vue": "^5.0.3",
"@vue/eslint-config-airbnb-with-typescript": "^8.0.0",
"@vue/eslint-config-prettier": "^8.0.0",
"@vue/eslint-config-typescript": "^12.0.0",
"@vue/tsconfig": "^0.5.1",
"autoprefixer": "^10.4.17",
"eslint": "^8.56.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-import-resolver-alias": "^1.1.2",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-vue": "^9.21.1",
"npm-run-all2": "^6.1.2",
"postcss": "^8.4.35",
"prettier": "^3.2.5",
"prettier-plugin-tailwindcss": "^0.5.11",
"tailwindcss": "^3.4.1",
"typescript": "~5.3.3",
"unplugin-vue-router": "^0.7.0",
"vite": "^5.0.12",
"vite-plugin-vue-devtools": "^7.0.14",
"vite-plugin-vue-layouts": "^0.11.0",
"vite-plugin-webfont-dl": "^3.9.1",
"vue-tsc": "^1.8.27"
}
}