-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
95 lines (95 loc) · 2.72 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
{
"name": "astro-template",
"type": "module",
"version": "0.0.1",
"browserslist": [
"cover 99.5%"
],
"astro": {
"bundlerOptions": {
"css": {
"minify": true,
"extract": {
"filename": "[name].css"
}
}
}
},
"scripts": {
"dev": "astro dev",
"start": "astro dev --host",
"build": "astro check && astro build",
"preview": "astro preview",
"astro": "astro",
"test": "vitest",
"check": "astro check",
"check:ts": "tsc --noEmit",
"prepare": "husky",
"lint:prettier": "prettier -w **/*.{js,jsx,ts,tsx,md,mdx,astro,vue} --config .prettierrc.cjs",
"lint:eslint": "eslint src/**/*.{js,ts,jsx,tsx,astro,vue} --fix",
"lint:stylelint": "stylelint **/*.scss",
"lint:stylelint:fix": "stylelint **/*.scss --fix",
"lint": "npm run lint:prettier & npm run lint:eslint & npm run lint:stylelint"
},
"dependencies": {
"@astrojs/vue": "^4.5.3",
"@floating-ui/dom": "^1.6.12",
"astro": "^4.16.18",
"astro-icon": "^1.1.0",
"gsap": "^3.12.5",
"intl-tel-input": "^24.6.0",
"lenis": "^1.1.14",
"lozad": "^1.16.0",
"resize-observer-polyfill": "^1.5.1",
"simplebar": "^6.2.7",
"slim-select": "^2.9.2",
"slugify": "^1.6.6",
"split-type": "^0.3.4",
"splitting": "^1.0.6",
"swiper": "^11.0.6",
"tweakpane": "^4.0.4",
"vanilla-cookieconsent": "^3.0.1",
"vue": "^3.5.13",
"zod": "^3.23.8"
},
"devDependencies": {
"@astrojs/check": "^0.9.4",
"@astrojs/tailwind": "^5.1.2",
"@astrojs/ts-plugin": "^1.6.1",
"@stylistic/stylelint-plugin": "^3.1.2",
"@tweakpane/core": "^2.0.4",
"@types/jsdom": "^21.1.7",
"@types/lozad": "^1.16.4",
"@types/swiper": "^6.0.0",
"@typescript-eslint/parser": "^6.7.2",
"@vue/eslint-config-prettier": "^9.0.0",
"autoprefixer": "^10.4.20",
"chalk": "^5.3.0",
"cssnano": "^7.0.6",
"eslint": "^8.57.0",
"eslint-config-prettier": "^10.0.2",
"eslint-plugin-astro": "^0.29.0",
"eslint-plugin-vue": "^9.33.0",
"glob": "^10.3.12",
"husky": "^9.0.11",
"inquirer": "^9.2.17",
"inquirer-file-tree-selection-prompt": "^2.0.5",
"jsdom": "^25.0.1",
"postcss": "^8.4.47",
"postcss-combine-duplicated-selectors": "^10.0.3",
"postcss-combine-media-query": "^1.0.1",
"postcss-reporter": "^7.1.0",
"postcss-scss": "^4.0.9",
"postcss-sort-media-queries": "^5.2.0",
"postcss-url": "^10.1.3",
"prettier": "^3.1.1",
"prettier-plugin-astro": "^0.12.3",
"rollup-plugin-visualizer": "^5.12.0",
"sass": "^1.81.0",
"stylelint-scss": "^6.0.0",
"tailwindcss": "^3.4.13",
"typescript": "^5.3.3",
"vite-plugin-sass-glob-import": "^3.0.2",
"vitest": "^2.1.1"
}
}