-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathpackage.json
80 lines (80 loc) · 2.99 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
{
"name": "findadoc-web",
"version": "1.0.0",
"private": true,
"scripts": {
"prepare": "husky",
"dev": "yarn && nuxi dev",
"dev:localserver": "NUXT_USE_LOCAL_API=true; yarn && nuxi dev",
"generate": "graphql-codegen --config ./typesgeneratorconfig.ts",
"lint": "ESLINT_USE_FLAT_CONFIG=true eslint . -c eslint.config.js",
"lint:fix": "ESLINT_USE_FLAT_CONFIG=true eslint . -c eslint.config.js --fix",
"lint:locales": "node i18n/checkLocaleKeys.js",
"lint:ci": "yarn prepare:ci && eslint . --config eslint.config.js --format @microsoft/eslint-formatter-sarif --output-file eslint-results.sarif",
"prod:build": "yarn && yarn generate && nuxi generate",
"prod:start": "nuxi start",
"prepare:ci": "nuxi prepare",
"test": "yarn test:pinia --run && yarn test:e2e",
"test:pinia": "nuxi prepare && nuxi generate && vitest",
"test:pinia:coverage": "vitest run --coverage",
"test:e2e": "cypress run --e2e --browser chrome --record --key 04a1fe54-0011-407b-b7d7-fcb9b2daf1e6"
},
"packageManager": "[email protected]",
"engines": {
"node": ">=21.3.0"
},
"type": "module",
"dependencies": {
"@auth0/auth0-vue": "^2.3.3",
"@pinia/nuxt": "^0.5.2",
"cypress-real-events": "^1.13.0",
"graphql": "^16.9.0",
"graphql-request": "^7.1.0",
"nuxt-svgo": "^4.0.2",
"pinia": "^2.2.0",
"vue": "^3.4.35",
"vue-gtag": "^2.0.1",
"vue-router": "^4.4.2",
"vue-server-renderer": "^2.7.16",
"vue-template-compiler": "^2.7.16",
"vue-toastification": "^2.0.0-rc.5",
"vue3-google-map": "^0.21.0"
},
"devDependencies": {
"@graphql-codegen/cli": "^5.0.3",
"@graphql-codegen/typescript": "^4.0.9",
"@graphql-codegen/typescript-resolvers": "^4.2.1",
"@microsoft/eslint-formatter-sarif": "^3.1.0",
"@nuxt/eslint": "^0.5.0",
"@nuxt/test-utils": "^3.14.3",
"@nuxt/types": "^2.18.1",
"@nuxtjs/i18n": "^9.1.0",
"@stylistic/eslint-plugin": "^2.6.1",
"@swc/core": "^1.7.6",
"@testing-library/vue": "^8.1.0",
"@vitejs/plugin-vue": "^5.1.2",
"@vitest/coverage-v8": "^2.1.3",
"@vue/test-utils": "^2.4.6",
"all-contributors-cli": "^6.26.1",
"autoprefixer": "^10.4.20",
"cypress": "^13.13.2",
"cypress-plugin-tab": "^1.0.5",
"eslint": "^9.8.0",
"eslint-plugin-cypress": "^3.4.0",
"eslint-plugin-json": "^4.0.1",
"eslint-plugin-vue": "^9.27.0",
"husky": "^9.1.4",
"jsdom": "^24.1.1",
"nuxt": "^3.12.4",
"nuxt-viewport": "^2.1.5",
"postcss": "^8.4.41",
"postcss-html": "^1.7.0",
"start-server-and-test": "^2.0.8",
"tailwindcss": "^3.4.7",
"typescript": "5.5.4",
"typescript-eslint": "^8.0.1",
"vite": "^5.3.5",
"vitest": "^2.1.3",
"webpack": "^5.93.0"
}
}