-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
84 lines (84 loc) · 2.56 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
{
"name": "@viorelmocanu/melanto",
"displayName": "Melanto.ro - Doar mobilă, doar calitate",
"publisher": "ViorelMocanu",
"description": "A furniture website built for a friend.",
"type": "module",
"version": "1.0.0",
"icon": "public/favicon.png",
"repository": {
"type": "git",
"url": "https://github.com/ViorelMocanu/melanto"
},
"homepage": "https://melanto.ro",
"browserslist": [
"defaults"
],
"engines": {
"node": ">=20",
"pnpm": ">=8"
},
"keywords": [
"astro",
"astro3",
"furniture",
"css",
"scss",
"html",
"figma"
],
"scripts": {
"dev": "astro dev",
"start": "astro dev",
"build": "astro build",
"preview": "astro preview",
"astro": "astro",
"format": "prettier --check ./**/*.{html,css,js,cjs,ts,astro,md,json,yaml} --plugin=prettier-plugin-astro",
"format:fix": "prettier --write ./**/*.{html,css,js,cjs,ts,astro,md,json,yaml} --plugin=prettier-plugin-astro",
"lint:js": "eslint ./**/*.js ./**/*.ts ./**/*.astro",
"lint:md": "markdownlint ./src/**/*.md",
"lint:fix": "pnpm lint:js --fix . && pnpm lint:md --fix",
"lint": "pnpm lint:js . && pnpm lint:md",
"postinstall": "husky init",
"coverage": "pnpm test:unit --coverage",
"typegen:astro": "astro sync",
"typegen:supabase": "pnpm supabase gen types typescript --project-id \"$PUBLIC_SUPABASE_REFERENCE\" --schema public > src/types/supabase.ts --debug",
"test:unit": "vitest run",
"test:e2e": "playwright test",
"test": "pnpm test:unit",
"typecheck": "pnpm astro check && pnpm tsc --project tsconfig.json",
"upd": "pnpm up --latest --interactive && pnpm update",
"verify": "pnpm lint && pnpm typecheck && pnpm test:unit && pnpm format",
"verify:fix": "pnpm lint:fix && pnpm typecheck && pnpm test:unit && pnpm format:fix",
"prepare": "husky"
},
"dependencies": {
"@astrojs/check": "0.9.4",
"@astrojs/vercel": "7.8.2",
"@vercel/analytics": "^1.4.0",
"astro": "4.16.13",
"astro-simpleanalytics-plugin": "^0.3.18",
"astro-webmanifest": "1.0.0",
"node-html-parser": "6.1.13",
"sharp": "0.33.5"
},
"devDependencies": {
"@commitlint/cli": "19.5.0",
"@commitlint/config-conventional": "19.5.0",
"@typescript-eslint/eslint-plugin": "8.14.0",
"@typescript-eslint/parser": "8.14.0",
"@vite-pwa/astro": "0.4.3",
"@vitest/coverage-v8": "2.1.5",
"eslint": "9.15.0",
"eslint-plugin-astro": "1.3.1",
"eslint-plugin-jsdoc": "50.5.0",
"eslint-plugin-jsx-a11y": "6.10.2",
"husky": "9.1.6",
"markdownlint-cli": "0.42.0",
"prettier": "3.3.3",
"prettier-plugin-astro": "0.14.1",
"sass": "1.81.0",
"typescript": "5.6.3",
"vitest": "2.1.5"
}
}