-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
101 lines (101 loc) · 3.78 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
{
"name": "vue3-pwa-starter",
"version": "0.0.0",
"engines": {
"node": ">=20.0.0"
},
"scripts": {
"dev": "vite dev --port 8001",
"build": "run-p type-check build-only",
"preview": "vite preview",
"preview:new": "npm run build && run-p preview",
"test:unit:coverage": "vitest --environment jsdom --root src/ run --coverage",
"test:unit": "vitest --environment jsdom --root src/",
"test:unit:update": "vitest --environment jsdom --root src/ --update",
"test:e2e": "START_SERVER_AND_TEST_INSECURE=1 start-server-and-test preview https-get://localhost:4173/ 'cypress run --e2e --config video=false,screenshotOnRunFailure=false'",
"test:e2e:dev": "START_SERVER_AND_TEST_INSECURE=1 start-server-and-test 'vite dev --port 4173 --host' https-get://localhost:4173/ 'cypress open --e2e'",
"test:visual:ci": "START_SERVER_AND_TEST_INSECURE=1 start-server-and-test 'npm run test:visual:dev' http-get://localhost:3001 'npm run test:visual --ci'",
"build-only": "vite build",
"type-check": "vue-tsc --noEmit -p tsconfig.vitest.json --composite false",
"lint": "eslint . --ext .vue,.js,.jsx,.cjs,.mjs,.ts,.tsx,.cts,.mts --fix --ignore-path .gitignore",
"translate": "vue-translation-manager translate",
"translation-key-check": "vue-translation-manager validate",
"test:all": "run-p coverage test:e2e test:visual:ci",
"test:visual:dev": "storybook dev -p 3001",
"build-storybook": "storybook build",
"test:visual": "test-storybook --url http://localhost:3001",
"test:visual:update": "test-storybook --url http://localhost:3001 --updateSnapshot"
},
"dependencies": {
"@m-media/vue3-gate-keeper": "^0.1.5",
"@m-media/vue3-meta-tags": "^0.0.7",
"@picocss/pico": "^2.0.6",
"@stripe/stripe-js": "^4.4",
"pinia": "^2.2",
"vue": "^3.5",
"vue-gtag": "^2.0.1",
"vue-i18n": "^9.2.2",
"vue-router": "^4.1.5"
},
"devDependencies": {
"@pinia/testing": "^0.1.5",
"@rushstack/eslint-patch": "^1.1.4",
"@storybook/addon-a11y": "^8.3.0",
"@storybook/addon-essentials": "^8.3.0",
"@storybook/addon-interactions": "^8.3.0",
"@storybook/addon-links": "^8.3.0",
"@storybook/addon-themes": "^8.3.0",
"@storybook/blocks": "^8.3.0",
"@storybook/test": "^8.3.0",
"@storybook/test-runner": "^0.19.1",
"@storybook/vue3": "^8.3.0",
"@storybook/vue3-vite": "^8.3.0",
"@storybook/web-components": "^8.3.0",
"@types/jest-image-snapshot": "^6.4.0",
"@types/jsdom": "^20.0.0",
"@types/node": "^20.11.25",
"@vitejs/plugin-basic-ssl": "^1.0.2",
"@vitejs/plugin-vue": "^4.6.2",
"@vitest/coverage-istanbul": "^1.3",
"@vue/eslint-config-prettier": "^7.0.0",
"@vue/eslint-config-typescript": "^11.0.0",
"@vue/test-utils": "^2.1.0",
"@vue/tsconfig": "^0.5.1",
"axe-playwright": "^2.0.1",
"cypress": "^10.11.0",
"eslint": "^8.22.0",
"eslint-plugin-cypress": "^2.12.1",
"eslint-plugin-no-secrets": "^0.8.9",
"eslint-plugin-spellcheck": "^0.0.19",
"eslint-plugin-storybook": "^0.8.0",
"eslint-plugin-unused-imports": "^2.0.0",
"eslint-plugin-vue": "^9.3.0",
"html-validate": "^8.22",
"html-validate-vue": "^6.0.8",
"jest-image-snapshot": "^6.4.0",
"jsdom": "^20.0.1",
"npm-run-all": "^4.1.5",
"postcss-dark-theme-class": "^1.2.1",
"pre-commit": "^1.2.2",
"pre-push": "^0.1.4",
"prettier": "^2.7.1",
"start-server-and-test": "^2.0.7",
"storybook": "^8.3.0",
"storybook-vue3-router": "^5.0.0",
"typescript": "~5.6.2",
"vite": "^5.4",
"vitest": "^1.6",
"vue-stripe-js": "^1.0.2",
"vue-translation-manager": "^1.2.0",
"vue-tsc": "^2.1"
},
"pre-commit": [
"lint",
"type-check"
],
"pre-push": [
"translation-key-check",
"test:unit:coverage",
"test:visual:ci"
]
}