-
Notifications
You must be signed in to change notification settings - Fork 24
Expand file tree
/
Copy pathpackage.json
More file actions
107 lines (107 loc) · 4.62 KB
/
package.json
File metadata and controls
107 lines (107 loc) · 4.62 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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
{
"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:cleanlocales": "node i18n/cleanUnusedLocaleKeys.js",
"lint:ci": "yarn prepare:ci && ESLINT_USE_FLAT_CONFIG=true eslint . -c eslint.config.js",
"prod:build": "yarn && yarn generate && nuxi generate",
"prod:start": "nuxi start",
"ci:build": "yarn && yarn generate && nuxi generate",
"ci:start": "nuxi start",
"prepare:ci": "nuxi prepare",
"test": "yarn test:unit --run && yarn test:e2e:headless",
"test:unit": "nuxi prepare && vitest run -c vitest.unit.config.ts",
"test:unit:coverage": "nuxi prepare && vitest run -c vitest.unit.config.ts --coverage",
"test:e2e:headless": "playwright test",
"dev:e2e": "node -e \"console.log('\\n>> Starting Nuxt dev server on port 4242 for e2e tests...\\n')\" && cross-env NUXT_IS_TESTING_MODE=true nuxi dev --port 4242",
"test:e2e:local": "start-server-and-test dev:e2e http://localhost:4242 test:e2e:headless",
"test:e2e:local:ui": "start-server-and-test dev:e2e http://localhost:4242 \"playwright test --ui\"",
"test:e2e:local:prod": "start-server-and-test \"cross-env NUXT_IS_TESTING_MODE=true yarn ci:build && cross-env NUXT_IS_TESTING_MODE=true PORT=4242 yarn ci:start\" http://localhost:4242 \"PLAYWRIGHT_BASE_URL=http://localhost:4242 playwright test\"",
"test:e2e:ci": "playwright test",
"test:snapshot": "vitest run -c vitest.snapshot.config.ts",
"test:snapshot:update": "vitest run -c vitest.snapshot.config.ts --update",
"storybook": "NUXT_STORYBOOK=true nuxi dev -p 7331 && storybook dev -p 6006"
},
"packageManager": "yarn@4.12.0",
"engines": {
"node": ">=22.12.0"
},
"type": "module",
"dependencies": {
"@auth0/auth0-vue": "^2.5.0",
"@pinia/nuxt": "^0.11.3",
"graphql": "^16.12.0",
"graphql-request": "^7.4.0",
"hammerjs": "^2.0.8",
"nuxt-svgo": "^4.2.6",
"pinia": "^3.0.4",
"vue": "^3.5.26",
"vue-gtag": "^3.6.3",
"vue-router": "^4.6.3",
"vue-server-renderer": "^2.7.16",
"vue-template-compiler": "^2.7.16",
"vue-toastification": "^2.0.0-rc.5",
"vue3-google-map": "^0.27.0"
},
"devDependencies": {
"@graphql-codegen/cli": "^6.1.0",
"@graphql-codegen/typescript": "^5.0.7",
"@graphql-codegen/typescript-resolvers": "^5.1.5",
"@microsoft/eslint-formatter-sarif": "^3.1.0",
"@nuxt/eslint": "^1.12.1",
"@nuxt/test-utils": "^3.21.0",
"@nuxt/types": "^2.18.1",
"@nuxtjs/i18n": "^10.2.1",
"@nuxtjs/storybook": "^9.0.1",
"@pinia/testing": "^1.0.3",
"@playwright/test": "^1.49.0",
"@storybook/addon-a11y": "^10.1.11",
"@storybook/addon-docs": "^10.1.11",
"@storybook/addon-links": "^10.1.11",
"@stylistic/eslint-plugin": "^5.6.1",
"@swc/core": "^1.15.8",
"@tailwindcss/postcss": "^4.1.18",
"@tailwindcss/vite": "^4.1.18",
"@testing-library/vue": "^8.1.0",
"@types/google.maps": "^3.58.1",
"@types/hammerjs": "^2.0.46",
"@vitejs/plugin-vue": "^6.0.3",
"@vitest/coverage-v8": "^4.0.16",
"@vitest/eslint-plugin": "^1.6.5",
"@vue/test-utils": "^2.4.6",
"all-contributors-cli": "^6.26.1",
"autoprefixer": "^10.4.23",
"cross-env": "^10.1.0",
"dotenv": "^16.3.1",
"dotenv-cli": "^11.0.0",
"eslint": "^9.39.2",
"eslint-import-resolver-typescript": "^4.4.4",
"eslint-plugin-json": "^4.0.1",
"eslint-plugin-storybook": "^10.1.11",
"eslint-plugin-vue": "^10.6.2",
"husky": "^9.1.7",
"jsdom": "^27.4.0",
"nuxt": "^4.2.2",
"nuxt-gtag": "^4.1.0",
"nuxt-viewport": "^2.3.1",
"postcss": "^8.5.6",
"postcss-html": "^1.8.0",
"start-server-and-test": "^2.0.3",
"storybook": "^10.1.11",
"tailwindcss": "^4.1.18",
"typescript": "^5.9.3",
"typescript-eslint": "^8.51.0",
"vite": "^7.3.0",
"vitest": "^4.0.16",
"vue-eslint-parser": "^10.2.0",
"wait-on": "^8.0.1"
}
}