-
-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
97 lines (97 loc) · 3.31 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
{
"name": "@viorelmocanu/digital-resources",
"displayName": "Resurse.dev - Digital resources by Viorel Mocanu",
"publisher": "ViorelMocanu",
"description": "Discover thousands of useful resources for learning digital skills: Front End Development, Back End Development, UI/UX Design, Digital Marketing, Cyber Security and more.",
"type": "module",
"version": "0.1.0",
"icon": "public/favicon.png",
"repository": {
"type": "git",
"url": "https://github.com/ViorelMocanu/digital-resources"
},
"homepage": "https://resurse.dev",
"engines": {
"node": ">18.19",
"pnpm": ">=8"
},
"license": "ISC",
"keywords": [
"astro",
"astro3",
"resources",
"css",
"scss",
"html",
"learning",
"list",
"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 --ignore-pattern '.vercel/*' --ignore-pattern '.astro/*' --ignore-pattern 'build/*' --ignore-pattern 'coverage/*' --ignore-pattern 'dist/*' --ignore-pattern 'node_modules/*'",
"lint:md": "markdownlint ./src/**/*.md",
"lint:css": "pnpx stylelint \"src/style/*.scss\"",
"lint:fix": "pnpm lint:js --fix && pnpm lint:md --fix && pnpx stylelint \"src/style/*.scss\" --fix",
"lint": "pnpm lint:js && pnpm lint:md && pnpx stylelint \"src/style/*.scss\"",
"postinstall": "husky",
"coverage": "pnpm test:unit --coverage",
"test:unit": "vitest run",
"test:e2e": "playwright test",
"test": "pnpm test:unit && pnpm test:e2e",
"typecheck": "pnpm astro check && pnpm tsc --project tsconfig.json",
"verify": "pnpm lint && pnpm typecheck && pnpm test:unit && pnpm format",
"verify:fix": "pnpm lint:fix && pnpm typecheck && pnpm test:unit && pnpm format:fix",
"upd": "pnpm update --latest --recursive --interactive"
},
"dependencies": {
"@astrojs/check": "^0.9.4",
"@astrojs/partytown": "^2.1.2",
"@astrojs/rss": "^4.0.9",
"@astrojs/sitemap": "^3.2.1",
"@astrojs/vercel": "^7.8.2",
"@sentry/astro": "^8.34.0",
"@vercel/analytics": "^1.3.1",
"@vercel/speed-insights": "^1.0.12",
"astro": "^4.16.6",
"astro-capo": "^0.0.1",
"astro-compress": "^2.3.3",
"astro-embed": "^0.7.4",
"astro-simpleanalytics-plugin": "^0.3.17",
"astro-social-share": "^2.0.2",
"astro-webmanifest": "^1.0.0",
"lite-youtube-embed": "^0.3.3",
"node-html-parser": "^6.1.13",
"posthog-js": "^1.174.2",
"sass": "^1.80.3",
"sharp": "^0.33.5"
},
"devDependencies": {
"@astrojs/mdx": "^3.1.8",
"@commitlint/cli": "^19.5.0",
"@commitlint/config-conventional": "^19.5.0",
"@typescript-eslint/eslint-plugin": "^8.10.0",
"@typescript-eslint/parser": "^8.10.0",
"@vitest/coverage-v8": "^2.1.3",
"csv-parser": "^3.0.0",
"eslint": "^9.13.0",
"eslint-plugin-astro": "^1.3.0",
"eslint-plugin-jsdoc": "^50.4.3",
"eslint-plugin-jsx-a11y": "^6.10.0",
"husky": "^9.1.6",
"markdownlint-cli": "^0.42.0",
"prettier": "^3.3.3",
"prettier-plugin-astro": "^0.14.1",
"stylelint": "^16.10.0",
"stylelint-config-standard-scss": "^13.1.0",
"typescript": "^5.6.3",
"vite": "^5.4.9",
"vitest": "^2.1.3"
}
}