-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
91 lines (91 loc) · 2.86 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
{
"name": "nuxt-app",
"private": true,
"type": "module",
"scripts": {
"build": "nuxt build",
"dev": "nuxt dev",
"worker": "graphile-worker",
"generate": "nuxt generate",
"preview": "nuxt preview",
"postinstall": "nuxt prepare",
"codegen:graphql": "graphql-codegen --config ./codegen.ts",
"db:migrate": "graphile-migrate migrate --config ./.gmrc.cjs",
"db:migrate:watch": "graphile-migrate watch --config ./.gmrc.cjs",
"lint:eslint": "eslint .",
"lint:prettier": "prettier . \"!**/*.{js,jsx,mjs,cjs,ts,tsx,vue}\" --check",
"lint:fix": "prettier . \"!**/*.{js,jsx,mjs,cjs,ts,tsx,vue}\" --write --list-different && eslint . --fix"
},
"dependencies": {
"@eslint/js": "^9.12.0",
"@graphile/simplify-inflection": "^8.0.0-beta.5",
"@graphql-codegen/add": "^5.0.3",
"@graphql-codegen/cli": "^5.0.3",
"@graphql-codegen/typescript": "^4.0.9",
"@graphql-codegen/typescript-vue-urql": "^3.2.0",
"@nuxt/kit": "^3.13.0",
"@nuxt/schema": "^3.13.0",
"@nuxt/ui": "^2.18.4",
"@pinia/nuxt": "^0.7.0",
"@tus/file-store": "^1.3.3",
"@tus/server": "^1.6.0",
"@urql/core": "^5.0.6",
"@urql/devtools": "^2.0.3",
"@urql/exchange-graphcache": "^7.2.0",
"@urql/vue": "^1.4.1",
"@vueuse/nuxt": "^10.10.0",
"engine.io": "^6.5.4",
"find-config": "^1.0.0",
"graphile-worker": "^0.16.6",
"graphql-config": "^5.1.3",
"graphql-ws": "^5.16.0",
"html-to-text": "^9.0.5",
"lodash-es": "^4.17.21",
"mjml": "^4.15.3",
"nodemailer": "^6.9.14",
"nuxt": "^3.13.0",
"nuxt-security": "latest",
"pinia": "^2.2.6",
"postgraphile": "beta",
"postgraphile-plugin-connection-filter": "beta",
"prosemirror-example-setup": "^1.2.3",
"prosemirror-markdown": "^1.13.1",
"prosemirror-state": "^1.4.3",
"prosemirror-view": "^1.34.3",
"socket.io": "^4.7.5",
"socket.io-client": "^4.7.5",
"tus-js-client": "^4.1.0",
"vue": "^3.4.27",
"vue-router": "^4.3.2",
"ws": "^8.18.0",
"zod": "^3.23.8"
},
"devDependencies": {
"@0no-co/graphqlsp": "^1.12.16",
"@eslint/config-inspector": "^0.5.5",
"@graphql-codegen/client-preset": "^4.4.0",
"@graphql-eslint/eslint-plugin": "4.0.0-alpha.6",
"@iconify-json/ic": "^1.1.18",
"@iconify-json/mdi": "^1.1.68",
"@nuxt/eslint": "^0.6.0",
"@types/bun": "^1.1.10",
"@types/eslint__js": "^8.42.3",
"@types/find-config": "^1.0.4",
"@types/html-to-text": "^9.0.4",
"@types/lodash-es": "^4.17.12",
"@types/mjml": "^4.7.4",
"@types/nodemailer": "^6.4.15",
"cross-env": "^7.0.3",
"envfile": "^7.1.0",
"eslint": "^9.9.1",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"graphile-migrate": "^1.4.1",
"inquirer": "^10.1.8",
"prettier": "^3.3.3",
"ts-node": "^10.9.2"
},
"overrides": {
"graphql": "^16.9.0"
}
}