-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 2.69 KB
/
Copy pathpackage.json
File metadata and controls
78 lines (78 loc) · 2.69 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
{
"name": "portolio-netlify",
"version": "0.0.0",
"scripts": {
"dev": "vite",
"netlify": "netlify dev",
"build": "yarn build-vite && yarn build-storybook",
"serve": "vite preview",
"build-vite": "vite build",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build -o dist/storybook",
"lint": "yarn lint:eslint && yarn lint:prettier && yarn lint:stylelint",
"lint:eslint": "eslint --ext .js,.vue --ignore-path .gitignore .",
"lint:prettier": "prettier --check \"**/*.{js,vue,html,css,scss}\" --ignore-path .gitignore",
"lint:stylelint": "stylelint \"**/*.{vue,html,css,scss}\" --ignore-path .gitignore",
"lint:fix": "yarn lint:fix:eslint && yarn lint:fix:prettier && yarn lint:fix:stylelint",
"lint:fix:eslint": "eslint --ext .js,.vue --ignore-path .gitignore . --fix",
"lint:fix:prettier": "prettier --write \"**/*.{js,vue,html,css,scss}\" --ignore-path .gitignore",
"lint:fix:stylelint": "stylelint \"**/*.{vue,html,css,scss}\" --ignore-path .gitignore --fix"
},
"dependencies": {
"maska": "^3.0.0",
"sanitize.css": "^13.0.0",
"vue": "^3.4.19",
"vuetify": "^3.7.3"
},
"devDependencies": {
"@babel/core": "^7.26.0",
"@babel/eslint-parser": "^7.25.9",
"@mdi/font": "^7.4.47",
"@storybook/addon-essentials": "^7.6.20",
"@storybook/addon-interactions": "^7.6.20",
"@storybook/addon-links": "^7.6.20",
"@storybook/blocks": "^7.6.20",
"@storybook/builder-vite": "^7.6.20",
"@storybook/test": "^7.6.20",
"@storybook/vue3": "^7.6.20",
"@storybook/vue3-vite": "^7.6.20",
"@vitejs/plugin-vue": "^5.1.0",
"eslint": "^9.15.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-cypress": "^4.1.0",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-storybook": "^0.11.1",
"eslint-plugin-vue": "^9.31.0",
"postcss": "^8.4.49",
"postcss-html": "^1.7.0",
"postcss-scss": "^4.0.9",
"prettier": "^3.4.1",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"sass": "^1.81.0",
"storybook": "^7.6.20",
"stylelint": "^16.11.0",
"stylelint-config-recommended-scss": "^14.1.0",
"stylelint-config-recommended-vue": "^1.5.0",
"stylelint-config-standard": "^36.0.1",
"vite": "^5.4.11",
"vite-plugin-vuetify": "^2.0.4",
"vue-eslint-parser": "^9.4.3"
},
"packageManager": "yarn@4.5.3",
"browserslist": [
"> 1%",
"last 2 versions",
"not dead"
],
"cypress-cucumber-preprocessor": {
"nonGlobalStepDefinitions": true,
"stepDefinitions": "tests/e2e/specs",
"cucumberJson": {
"generate": true,
"outputFolder": "tests/e2e/cucumber-json",
"filePrefix": "",
"fileSuffix": ".cucumber"
}
}
}