-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
85 lines (85 loc) · 3.02 KB
/
Copy pathpackage.json
File metadata and controls
85 lines (85 loc) · 3.02 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
75
76
77
78
79
80
81
82
83
84
85
{
"name": "nuxt-app",
"private": true,
"type": "module",
"scripts": {
"dev": "npm-run-all --print-label --parallel app:dev worker:dev db:dev graphql:dev",
"app:build": "nuxt build",
"app:dev": "nuxt dev",
"app:generate": "nuxt generate",
"app:preview": "nuxt preview",
"graphql": "graphql-codegen -e",
"graphql:dev": "graphql-codegen --watch",
"gm": "tsx --env-file=.env ./node_modules/.bin/graphile-migrate",
"db:migrate": "gm migrate",
"db:dev": "npm run gm watch",
"db:commit": "gm commit",
"db:uncommit": "gm uncommit",
"db:reset": "gm reset",
"db:dump": "gm migrate && gm reset --shadow --erase && gm migrate --shadow --forceActions",
"db:test": "cross-env NODE_ENV=test NODE_OPTIONS=\"${NODE_OPTIONS:-} -r dotenv/config\" jest",
"setup:env": "tsx --env-file=.env ./scripts/setup_env.cjs",
"setup:db": "tsx --env-file=.env ./scripts/setup_db.cjs",
"setup": "npm run setup:env && npm run setup:db && npm run graphql",
"_i18n": "npx nuxt-i18n-micro-cli",
"i18n": "i18n-micro",
"lint": "eslint --fix .",
"worker:dev": "tsx --watch --watch-preserve-output --env-file=.env worker/index.ts",
"worker:start": "tsx --env-file=.env worker/index.ts",
"postinstall": "nuxt prepare"
},
"dependencies": {
"@grafserv/persisted": "^0.0.0-beta.34",
"@graphile-contrib/pg-many-to-many": "^2.0.0-beta.7",
"@graphile-contrib/pg-omit-archived": "^4.0.0-beta.4",
"@graphile/pg-aggregates": "^0.2.0-beta.8",
"@graphile/simplify-inflection": "^8.0.0-beta.6",
"@nuxt/eslint": "1.3.0",
"@nuxt/icon": "1.12.0",
"@nuxt/image": "1.10.0",
"@nuxt/test-utils": "3.18.0",
"@nuxt/ui": "3.1.1",
"@types/html-to-text": "^9.0.4",
"@types/mjml": "^4.7.4",
"@types/nodemailer": "^6.4.17",
"@types/pg": "^8.15.0",
"@urql/exchange-execute": "^2.3.1",
"@urql/vue": "^1.4.3",
"graphile": "^5.0.0-beta.40",
"html-to-text": "^9.0.5",
"lodash-es": "^4.17.21",
"mjml": "^4.15.3",
"nodemailer": "^7.0.2",
"npm-run-all": "^4.1.5",
"nuxt": "^3.17.1",
"nuxt-auth-utils": "^0.5.20",
"nuxt-i18n-micro": "^1.87.0",
"nuxt-security": "2.2.0",
"postgraphile": "^5.0.0-beta.40",
"postgraphile-plugin-connection-filter": "^3.0.0-beta.8",
"typescript": "^5.6.3",
"vue": "^3.5.13",
"vue-router": "^4.5.1",
"ws": "^8.13.0"
},
"devDependencies": {
"@graphql-codegen/add": "^5.0.3",
"@graphql-codegen/cli": "^5.0.5",
"@graphql-codegen/typescript-operations": "^4.6.0",
"@graphql-codegen/typescript-urql-graphcache": "^3.1.0",
"@graphql-codegen/typescript-vue-urql": "^3.2.0",
"@graphql-codegen/urql-introspection": "^3.0.0",
"@josephanson/nuxt-ai": "^0.1.6",
"@nuxt/kit": "^3.17.2",
"@types/lodash-es": "^4.17.12",
"concurrently": "^9.1.2",
"eslint": "^9.26.0",
"graphile-migrate": "^1.4.1",
"graphile-worker": "^0.16.6",
"nuxt-i18n-micro-cli": "^1.1.1",
"tsx": "^4.19.4"
},
"resolutions": {
"graphql": "16.1.0-experimental-stream-defer.6"
}
}