-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
138 lines (138 loc) · 4.13 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
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
{
"name": "vite-vue-proste",
"private": true,
"version": "1.0.0",
"scripts": {
"dev": "vite",
"dev:e2e": "cross-env IS_E2E=true vite --port 5000",
"build": "vue-tsc --noEmit && vite build",
"preview": "vite preview",
"test": "vitest",
"cypress:run": "cypress run -b chrome",
"cypress": "cypress open",
"lint:style": "stylelint packages/app/src *.*.css",
"lint:js": "eslint . --ext .js,.jsx,.ts,.tsx,.vue",
"lint:style-fix": "pnpm run lint:style --fix",
"lint:js-fix": "pnpm run lint:js --fix",
"prettier": "prettier -c **/*",
"prettier:write": "pnpm prettier --write",
"prepare": "husky install",
"postinstall": "husky install",
"pre-commit": "lint-staged",
"release": "standard-version",
"release:major": "standard-version --release-as major",
"release:minor": "standard-version --release-as minor",
"release:patch": "standard-version --release-as patch",
"commit": "cz"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog",
"types": {
"feat": {
"description": "A new feature",
"title": "Features"
},
"fix": {
"description": "A bug fix",
"title": "Bug Fixes"
},
"update": {
"description": "Modify src files",
"title": "Updates"
},
"chore": {
"description": "Other changes that don't modify src or test files",
"title": "Chores"
},
"test": {
"description": "Adding missing tests or correcting existing tests",
"title": "Tests"
},
"style": {
"description": "Changes that do not affect the meaning of the code (white-space, formatting, missing semi-colons, etc)",
"title": "Styles"
},
"refactor": {
"description": "A code change that neither fixes a bug nor adds a feature",
"title": "Code Refactoring"
},
"perf": {
"description": "A code change that improves performance",
"title": "Performance Improvements"
},
"revert": {
"description": "Reverts a previous commit",
"title": "Reverts"
},
"merge": {
"description": "Merge branch",
"title": "Merges"
}
}
}
},
"dependencies": {
"@tanstack/vue-query": "^5.7.2",
"axios": "^1.6.0",
"pinia": "^2.1.7",
"veboundary": "1.2.2",
"vue": "^3.3.7",
"vue-router": "^4.2.5"
},
"devDependencies": {
"@commitlint/cli": "^18.2.0",
"@commitlint/config-conventional": "^18.1.0",
"@nabla/vite-plugin-eslint": "^1.5.0",
"@types/node": "20.8.10",
"@types/rollup-plugin-visualizer": "^4.2.2",
"@typescript-eslint/eslint-plugin": "^6.9.1",
"@typescript-eslint/parser": "^6.9.1",
"@vitejs/plugin-vue": "^4.4.0",
"@vitejs/plugin-vue-jsx": "^3.0.2",
"@vue/test-utils": "^2.4.1",
"browserslist-to-esbuild": "^1.2.0",
"commitizen": "^4.3.0",
"cross-env": "^7.0.3",
"cypress": "^13.4.0",
"cz-conventional-changelog": "^3.3.0",
"editorconfig": "^2.0.0",
"eslint": "^8.53.0",
"eslint-config-prettier": "^9.0.0",
"eslint-config-proste": "^9.1.0",
"eslint-plugin-cypress": "^2.15.1",
"eslint-plugin-import": "^2.29.0",
"eslint-plugin-import-newlines": "^1.3.4",
"eslint-plugin-vue": "^9.18.1",
"husky": "^8.0.3",
"jsdom": "^22.1.0",
"lint-staged": "^15.0.2",
"postcss": "^8.4.31",
"postcss-nesting": "^12.0.1",
"postcss-preset-env": "^9.3.0",
"prettier": "^3.0.3",
"rollup-plugin-visualizer": "^5.9.2",
"standard-version": "^9.5.0",
"stylelint": "^15.11.0",
"stylelint-config-recess-order": "^4.3.0",
"stylelint-config-standard": "^34.0.0",
"typescript": "^5.2.2",
"vite": "^4.5.0",
"vitest": "^0.34.6",
"vue-eslint-parser": "^9.3.2",
"vue-tsc": "^1.8.22"
},
"browserslist": {
"production": [
">= 5%",
"not dead",
"not op_mini all",
"not ie <= 11"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}