-
-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
177 lines (177 loc) · 6.82 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
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
{
"name": "jabref-online",
"version": "1.0.0",
"private": true,
"type": "module",
"scripts": {
"dev": "nuxi dev",
"build": "nuxi build --fail-on-error",
"build:azure": "cross-env INPUT_AZURE_STATIC_WEB_APPS_API_TOKEN=test NITRO_PRESET=azure pnpm build",
"start": "nuxi preview",
"start:azure": "cross-env NUXT_PUBLIC_ENVIRONMENT=development swa start .output/public --api-location .output/server",
"generate": "pnpm prisma:generate && pnpm graphql:generate",
"generate:watch": "concurrently \"pnpm:*:generate:watch\"",
"prisma:migrate:dev": "prisma migrate dev",
"prisma:migrate:dev:create": "prisma migrate dev --create-only",
"prisma:migrate:diff": "prisma migrate diff --exit-code --from-migrations server/database/migrations --to-schema-datamodel server/database/schema.prisma --shadow-database-url",
"prisma:migrate:reset": "prisma migrate reset",
"prisma:migrate:deploy": "prisma migrate deploy",
"prisma:migrate:status": "prisma migrate status",
"prisma:migrate:resolve": "prisma migrate resolve",
"prisma:push": "prisma db push",
"prisma:seed": "prisma db seed",
"prisma:studio": "prisma studio",
"prisma:generate": "prisma generate",
"prisma:generate:watch": "prisma generate --watch",
"storybook": "storybook dev -p 6006 --preview-url=http://localhost:3000/_storybook/external-iframe --no-manager-cache",
"storybook:build": "storybook build",
"storybook:publish": "chromatic --exit-zero-on-changes --build-script-name storybook:build",
"graphql:generate": "graphql-codegen-esm",
"graphql:generate:watch": "graphql-codegen-esm --watch",
"graphql:validate": "graphql-inspector validate --apollo '{pages,components}/**/*.vue' 'server/**/*.graphql'",
"docker:redis": "docker run -d --rm --name JabRefRedis -p 6380:6379 redis --requirepass jabref",
"lint": "pnpm lint:oxlint && pnpm lint:eslint && pnpm lint:prettier",
"lint:oxlint": "oxlint",
"lint:eslint": "eslint --ext .ts,.js,.vue,.graphql --ignore-path .gitignore --report-unused-disable-directives .",
"lint:prettier": "prettier --check .",
"postinstall": "nuxi prepare && pnpm generate",
"test": "vitest --poolOptions.forks.singleFork",
"test:integration": "vitest integration.test.ts --poolOptions.forks.singleFork",
"test:unit": "vitest spec.ts",
"test:e2e": "vitest e2e.test.ts",
"typecheck": "nuxi typecheck",
"validate": "pnpm graphql:validate"
},
"dependencies": {
"@apollo/client": "3.11.8",
"@apollo/server": "4.11.2",
"@as-integrations/h3": "1.2.1",
"@azure/communication-email": "1.0.0",
"@graphql-tools/schema": "10.0.7",
"@he-tree/vue": "2.8.7",
"@nuxtjs/tailwindcss": "6.12.1",
"@pinia/nuxt": "0.5.3",
"@popperjs/core": "2.11.8",
"@prisma/client": "5.20.0",
"@variantjs/core": "0.0.90",
"@variantjs/vue": "0.0.22",
"@vee-validate/zod": "4.13.2",
"@vue/apollo-composable": "4.2.1",
"@vue/apollo-util": "4.0.0-beta.6",
"@vueuse/core": "11.1.0",
"@yaireo/tagify": "4.31.3",
"body-scroll-lock": "4.0.0-beta.0",
"cross-fetch": "4.0.0",
"graphql": "16.9.0",
"graphql-scalars": "1.23.0",
"ioredis": "5.4.1",
"json-bigint-patch": "0.0.8",
"lodash": "4.17.21",
"pinia": "2.2.1",
"reflect-metadata": "0.2.2",
"ts-loader": "9.5.1",
"ts-node": "10.9.2",
"tsyringe": "4.8.0",
"typescript": "5.5.4",
"unstorage": "1.12.0",
"vee-validate": "4.13.2",
"vue": "3.5.11",
"vue-router": "4.4.5",
"zod": "3.23.8"
},
"devDependencies": {
"@adonisjs/hash": "9.0.5",
"@apollo/utils.keyvaluecache": "3.1.0",
"@azure/core-rest-pipeline": "1.17.0",
"@azure/static-web-apps-cli": "2.0.1",
"@bg-dev/nuxt-naiveui": "1.14.0",
"@graphql-codegen/add": "5.0.3",
"@graphql-codegen/cli": "5.0.3",
"@graphql-codegen/fragment-matcher": "5.0.2",
"@graphql-codegen/gql-tag-operations-preset": "2.1.0",
"@graphql-codegen/typed-document-node": "5.0.11",
"@graphql-codegen/typescript-operations": "4.3.1",
"@graphql-eslint/eslint-plugin": "3.20.1",
"@graphql-inspector/cli": "5.0.6",
"@graphql-tools/merge": "9.0.8",
"@graphql-tools/utils": "10.5.5",
"@graphql-typed-document-node/core": "3.2.0",
"@nuxt/content": "2.13.2",
"@nuxt/kit": "3.12.4",
"@nuxt/test-utils": "3.14.0",
"@nuxtjs/eslint-config": "12.1.0",
"@nuxtjs/eslint-config-typescript": "12.1.0",
"@nuxtjs/seo": "2.0.0-rc.18",
"@storybook/core-client": "7.6.17",
"@storybook/core-server": "7.6.20",
"@storybook/types": "7.6.20",
"@storybook/vue3": "7.6.20",
"@storybook/vue3-vite": "7.6.20",
"@tailwindcss/forms": "0.5.9",
"@tailwindcss/line-clamp": "0.4.4",
"@tailwindcss/typography": "0.5.15",
"@types/bcryptjs": "2.4.6",
"@types/lodash": "4.17.13",
"@types/node": "20.17.5",
"@types/nodemailer": "6.4.16",
"@types/uuid": "10.0.0",
"@types/yaireo__tagify": "4.27.0",
"@typescript-eslint/eslint-plugin": "7.18.0",
"@typescript-eslint/parser": "7.18.0",
"@vee-validate/nuxt": "4.13.2",
"@vitest/coverage-v8": "2.1.4",
"@vue/compiler-sfc": "3.5.11",
"@vue/runtime-dom": "3.5.11",
"@vue/test-utils": "2.4.6",
"argon2": "0.41.1",
"chalk": "5.3.0",
"chromatic": "11.16.3",
"concurrently": "9.0.1",
"cross-env": "7.0.3",
"dotenv": "16.4.5",
"eslint": "8.57.0",
"eslint-config-prettier": "9.1.0",
"eslint-import-resolver-typescript": "3.6.1",
"eslint-plugin-nuxt": "4.0.0",
"eslint-plugin-oxlint": "^0.9.9",
"eslint-plugin-unused-imports": "3.2.0",
"eslint-plugin-vitest": "0.5.4",
"eslint-plugin-vue": "9.27.0",
"graphql-codegen-typescript-validation-schema": "0.16.0",
"graphql-tag": "2.12.6",
"mount-vue-component": "0.10.2",
"naive-ui": "2.40.1",
"nuxt": "3.12.4",
"nuxt-auth-utils": "^0.4.2",
"nuxt-graphql-server": "3.1.4",
"nuxt-icon": "0.6.10",
"oxlint": "0.11.0",
"postinstall-postinstall": "2.1.0",
"prettier": "3.3.3",
"prettier-plugin-organize-imports": "4.1.0",
"prisma": "5.20.0",
"storybook": "7.6.20",
"storybook-vue-addon": "0.6.1",
"tailwindcss": "3.4.13",
"ufo": "1.5.4",
"unplugin-vue-components": "0.27.4",
"vite": "5.4.0",
"vitest": "2.1.4",
"vitest-environment-nuxt": "1.0.1",
"vitest-github-actions-reporter": "0.11.1",
"vitest-mock-extended": "2.0.2",
"vue-tsc": "2.1.6"
},
"prisma": {
"schema": "server/database/schema.prisma",
"seed": "node --experimental-specifier-resolution=node --loader ts-node/esm ./server/database/runSeed.ts"
},
"packageManager": "pnpm@9.12.3",
"pnpm": {
"patchedDependencies": {
"mount-vue-component": "patches/mount-vue-component@0.10.2.patch",
"@vue/apollo-util": "patches/@vue__apollo-util@4.0.0-beta.6.patch",
"nitropack": "patches/nitropack@2.9.7.patch"
}
}
}