-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
95 lines (95 loc) · 2.83 KB
/
package.json
File metadata and controls
95 lines (95 loc) · 2.83 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
{
"name": "clone-project-front",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "vite preview",
"build-only": "vite build",
"type-check": "vue-tsc --build",
"lint": "eslint . --fix",
"format": "prettier --write src/",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build",
"prepare": "husky install",
"pm2:start": "pm2 start node_modules/vite/bin/vite.js --name clone-project-front",
"pm2:stop": "pm2 stop clone-project-front",
"pm2:restart": "pm2 restart clone-project-front",
"pm2:delete": "pm2 delete clone-project-front",
"pm2:log": "pm2 logs",
"pm2:status": "pm2 status",
"pm2:which": "which pm2",
"pm2:list": "pm2 list"
},
"lint-staged": {
"*.{js,ts,vue}": [
"eslint --fix",
"prettier --write"
],
"*.{json,css,scss,md}": [
"prettier --write"
]
},
"dependencies": {
"@emotion/react": "^11.14.0",
"@emotion/styled": "^11.14.0",
"@fortawesome/fontawesome-free": "^6.5.2",
"@fortawesome/vue-fontawesome": "^3.0.3",
"@mui/icons-material": "^7.1.1",
"@mui/material": "^7.1.1",
"@tailwindcss/vite": "^4.1.5",
"axios": "^1.8.4",
"bootstrap": "^5.3.5",
"date-fns": "^4.1.0",
"pinia": "^3.0.2",
"pm2": "^6.0.5",
"router": "^2.2.0",
"swiper": "^11.2.7",
"tailwindcss": "^4.1.5",
"vue": "^3.5.13",
"vue-router": "^4.5.0",
"vueperslides": "^3.6.0",
"zod": "^3.24.4"
},
"devDependencies": {
"@chromatic-com/storybook": "^3",
"@storybook/addon-essentials": "^8.6.12",
"@storybook/addon-onboarding": "^8.6.12",
"@storybook/blocks": "^8.6.12",
"@storybook/experimental-addon-test": "^8.6.12",
"@storybook/test": "^8.6.12",
"@storybook/vue3": "^8.6.12",
"@storybook/vue3-vite": "^8.6.12",
"@tsconfig/node22": "^22.0.1",
"@types/node": "^22.14.0",
"@typescript-eslint/eslint-plugin": "^8.32.0",
"@typescript-eslint/parser": "^8.32.0",
"@vitejs/plugin-vue": "^5.2.3",
"@vitest/browser": "^3.1.3",
"@vitest/coverage-v8": "^3.1.3",
"@vue/eslint-config-prettier": "^10.2.0",
"@vue/eslint-config-typescript": "^14.5.0",
"@vue/tsconfig": "^0.7.0",
"eslint": "^9.26.0",
"eslint-config-prettier": "^10.1.2",
"eslint-plugin-prettier": "^5.3.1",
"eslint-plugin-storybook": "^0.12.0",
"eslint-plugin-vue": "^10.1.0",
"husky": "^9.1.7",
"jiti": "^2.4.2",
"lint-staged": "^15.5.1",
"npm-run-all2": "^7.0.2",
"playwright": "^1.52.0",
"prettier": "^3.5.3",
"prettier-plugin-tailwindcss": "^0.6.11",
"storybook": "^8.6.12",
"typescript": "~5.8.0",
"vite": "^6.3.1",
"vite-plugin-vue-devtools": "^7.7.2",
"vite-svg-loader": "^5.1.0",
"vitest": "^3.1.3",
"vue-tsc": "^2.2.8"
}
}