-
-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpackage.json
176 lines (176 loc) · 7.57 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
{
"name": "jabref-online",
"version": "1.0.0",
"private": true,
"type": "module",
"scripts": {
"dev": "cross-env NODE_OPTIONS=--openssl-legacy-provider nuxi dev",
"build": "nuxi build --fail-on-error",
"build:azure": "cross-env INPUT_AZURE_STATIC_WEB_APPS_API_TOKEN=test NITRO_PRESET=azure yarn build",
"start": "nuxi preview",
"start:azure": "cross-env NUXT_PUBLIC_ENVIRONMENT=development npx @azure/static-web-apps-cli start .output/public --api-location .output/server",
"generate": "yarn prisma:generate && yarn graphql:generate",
"generate:watch": "concurrently \"yarn:*: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": "cross-env NODE_OPTIONS=--openssl-legacy-provider start-storybook -p 6006 --preview-url=http://localhost:3000/_storybook/external-iframe --no-manager-cache",
"storybook:build": "build-storybook",
"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": "yarn lint:eslint && yarn lint:prettier",
"lint:eslint": "eslint --ext .ts,.js,.vue,.graphql --ignore-path .gitignore --report-unused-disable-directives .",
"lint:prettier": "prettier --check --ignore-path .gitignore .",
"postinstall": "patch-package && nuxi prepare && yarn generate",
"test": "vitest --no-threads",
"test:integration": "vitest integration.test.ts --no-threads",
"test:unit": "vitest spec.ts",
"test:api": "vitest e2e.test.ts",
"typecheck": "nuxi typecheck",
"validate": "yarn graphql:validate"
},
"dependencies": {
"@apollo/client": "^3.7.1",
"@apollo/server": "^4.1.1",
"@as-integrations/h3": "^1.1.4",
"@fortawesome/fontawesome-svg-core": "^6.2.1",
"@fortawesome/free-solid-svg-icons": "^6.2.1",
"@fortawesome/vue-fontawesome": "^3.0.2",
"@graphql-tools/graphql-file-loader": "^7.5.11",
"@graphql-tools/load": "^7.8.6",
"@graphql-tools/merge": "^8.3.12",
"@graphql-tools/schema": "^9.0.8",
"@he-tree/vue3": "^1.2.9",
"@nozomuikuta/h3-cors": "^0.1.7",
"@pinia/nuxt": "^0.4.3",
"@popperjs/core": "^2.11.6",
"@prisma/client": "^4.6.1",
"@variantjs/core": "^0.0.90",
"@variantjs/vue": "^0.0.22",
"@vee-validate/zod": "^4.7.3",
"@vue/apollo-composable": "4.0.0-beta.1",
"@vue/apollo-util": "^4.0.0-alpha.18",
"@vueuse/core": "^9.5.0",
"@yaireo/tagify": "^4.17.4",
"autoprefixer": "^10.4.13",
"body-scroll-lock": "^4.0.0-beta.0",
"connect-redis": "^6.1.3",
"cross-fetch": "^3.1.5",
"express-session": "^1.17.3",
"graphql": "^16.6.0",
"graphql-passport": "^0.6.4",
"graphql-scalars": "^1.20.1",
"graphql-shield": "^7.6.5",
"lodash": "^4.17.21",
"nodemailer": "^6.8.0",
"passport": "^0.6.0",
"pinia": "^2.0.23",
"redis": "^4.5.1",
"reflect-metadata": "^0.1.13",
"ts-loader": "^9.3.1",
"ts-node": "^10.9.1",
"tsyringe": "^4.7.0",
"typescript": "^4.9.3",
"vee-validate": "^4.7.3",
"zod": "^3.19.1"
},
"devDependencies": {
"@azure/static-web-apps-cli": "^1.0.3",
"@graphql-codegen/add": "^3.2.1",
"@graphql-codegen/cli": "^2.13.12",
"@graphql-codegen/fragment-matcher": "^3.3.1",
"@graphql-codegen/gql-tag-operations-preset": "^1.7.0",
"@graphql-codegen/typed-document-node": "^2.3.7",
"@graphql-codegen/typescript-operations": "^2.5.7",
"@graphql-eslint/eslint-plugin": "^3.13.0",
"@graphql-inspector/cli": "^3.4.0",
"@graphql-typed-document-node/core": "^3.1.1",
"@huntersofbook/naive-ui-nuxt": "^0.4.1",
"@nuxt/content": "^2.2.2",
"@nuxtjs/eslint-config": "^12.0.0",
"@nuxtjs/eslint-config-typescript": "^12.0.0",
"@nuxtjs/tailwindcss": "6.1.3",
"@storybook/builder-vite": "^0.2.5",
"@storybook/vue3": "^6.5.13",
"@tailwindcss/forms": "^0.5.3",
"@tailwindcss/line-clamp": "^0.4.2",
"@tailwindcss/typography": "^0.5.8",
"@types/bcryptjs": "^2.4.2",
"@types/connect-redis": "^0.0.19",
"@types/express-session": "^1.17.5",
"@types/lodash": "^4.14.190",
"@types/nodemailer": "^6.4.5",
"@types/passport": "^1.0.10",
"@types/redis-mock": "^0.17.1",
"@types/supertest": "^2.0.12",
"@types/uuid": "^8.3.4",
"@types/yaireo__tagify": "^4.16.0",
"@typescript-eslint/eslint-plugin": "^5.43.0",
"@typescript-eslint/parser": "^5.44.0",
"@vitest/coverage-c8": "^0.25.2",
"@volar/vue-typescript": "^1.0.9",
"@vue/compiler-sfc": "^3.2.45",
"@vue/runtime-dom": "^3.2.45",
"@vue/test-utils": "^2.2.4",
"chromatic": "^6.11.4",
"concurrently": "^7.6.0",
"cross-env": "^7.0.3",
"eslint": "^8.26.0",
"eslint-config-prettier": "^8.5.0",
"eslint-import-resolver-typescript": "^3.5.2",
"eslint-plugin-nuxt": "^4.0.0",
"eslint-plugin-unused-imports": "^2.0.0",
"eslint-plugin-vitest": "^0.0.20",
"eslint-plugin-vue": "^9.7.0",
"graphql-codegen-typescript-validation-schema": "^0.7.0",
"mount-vue-component": "^0.10.2",
"naive-ui": "^2.34.2",
"nuxt": "rc",
"nuxt-graphql-server": "1.1.4",
"nuxt3-runtime-compiler-module": "^1.0.4",
"patch-package": "^6.5.0",
"postinstall-postinstall": "^2.1.0",
"prettier": "^2.8.0",
"prettier-plugin-organize-imports": "^3.1.1",
"prisma": "^4.6.1",
"redis-mock": "^0.56.3",
"supertest": "^6.3.1",
"supertest-graphql": "^1.1.4",
"ufo": "^0.8.6",
"unplugin-vue-components": "^0.22.11",
"vitest": "^0.25.2",
"vitest-github-actions-reporter": "^0.9.0",
"vitest-mock-extended": "^1.0.7",
"vue-tsc": "^1.0.9"
},
"resolutions": {
"@types/react": "https://registry.yarnpkg.com/@favware/skip-dependency/-/skip-dependency-1.2.0.tgz",
"unist-builder": "^3.0.0",
"remark-parse": "^10.0.1",
"express-session@^1.17.3": "patch:express-session@npm%3A1.17.3#./.yarn/patches/express-session-npm-1.17.3-0819dbe06c.patch",
"@apollo/client@^3.7.0": "patch:@apollo/client@npm%3A3.7.0#./.yarn/patches/@apollo-client-npm-3.7.0-07cf6b7bb6.patch",
"tslib": "^2.4.0"
},
"resolutionsComments": {
"@types/react": "Otherwise these types interfere with the types from vite: https://github.com/johnsoncodehk/volar/discussions/592#discussioncomment-1580518",
"unist-builder/remark-parse": "Otherwise we run into conflicts with older versions, which are imported mainly from storybook",
"tslib": "some libraries still pull-in v1 of tslib, which is incompatible with the other libraries that use tslib v2 features"
},
"prisma": {
"schema": "server/database/schema.prisma",
"seed": "node --experimental-specifier-resolution=node --loader ts-node/esm ./server/database/runSeed.ts"
},
"packageManager": "[email protected]"
}