-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
76 lines (76 loc) · 2.46 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
{
"name": "ecommerce-app",
"version": "0.0.0",
"private": true,
"scripts": {
"dev": "vite",
"build": "run-p type-check build-only",
"build:dev": "vite build --mode development",
"build-only": "vite build",
"preview": "vite preview",
"type-check": "vue-tsc --noEmit -p tsconfig.app.json --composite false",
"lint": "eslint . --ext .vue,.js,.jsx,.cjs,.mjs,.ts,.tsx,.cts,.mts --fix --ignore-path .gitignore",
"format": "prettier --write src/",
"prepare": "husky install",
"test:unit": "vitest run",
"test-coverage": "vitest run --coverage",
"test-ui": "vitest --ui --coverage",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build",
"init-msw": "msw init public/"
},
"dependencies": {
"@commercetools/platform-sdk": "^4.11.0",
"@commercetools/sdk-client-v2": "^2.2.0",
"@heroicons/vue": "^2.0.18",
"@types/lodash": "^4.14.197",
"@vueform/slider": "^2.1.7",
"axios": "^1.4.0",
"lodash": "^4.17.21",
"pinia": "^2.1.4",
"postcode-validator": "^3.8.14",
"swiper": "^10.2.0",
"vue": "^3.3.4",
"vue-router": "^4.2.4"
},
"devDependencies": {
"@rushstack/eslint-patch": "^1.3.2",
"@storybook/addon-essentials": "^7.0.6",
"@storybook/addon-interactions": "^7.0.6",
"@storybook/addon-links": "^7.0.6",
"@storybook/blocks": "^7.0.6",
"@storybook/testing-library": "^0.0.14-next.2",
"@storybook/vue3": "^7.0.6",
"@storybook/vue3-vite": "^7.0.6",
"@tsconfig/node18": "^18.2.0",
"@types/node": "^18.17.0",
"@typescript-eslint/parser": "^5.62.0",
"@vitejs/plugin-vue": "^4.2.3",
"@vitest/coverage-istanbul": "^0.34.1",
"@vitest/coverage-v8": "^0.34.1",
"@vitest/ui": "^0.34.1",
"@vue/eslint-config-airbnb": "^7.0.0",
"@vue/eslint-config-prettier": "^8.0.0",
"@vue/eslint-config-typescript": "^11.0.3",
"@vue/test-utils": "^2.4.1",
"@vue/tsconfig": "^0.4.0",
"eslint": "^8.45.0",
"eslint-import-resolver-alias": "^1.1.2",
"eslint-plugin-import": "^2.28.0",
"eslint-plugin-storybook": "^0.6.11",
"eslint-plugin-vue": "^9.15.1",
"happy-dom": "^10.9.0",
"husky": "^8.0.0",
"lint-staged": "^13.2.3",
"msw": "^1.2.1",
"msw-storybook-addon": "^1.8.0",
"npm-run-all": "^4.1.5",
"prettier": "^3.0.0",
"storybook": "^7.0.6",
"typescript": "~5.1.6",
"vite": "^4.4.6",
"vitest": "^0.34.1",
"vue-eslint-parser": "^9.3.1",
"vue-tsc": "^1.8.6"
}
}