-
-
Notifications
You must be signed in to change notification settings - Fork 20
/
package.json
91 lines (91 loc) · 3.12 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
{
"name": "web-garden",
"version": "1.0.0",
"description": "Building blocks for making progressive and future-proof websites.\nComponents collection features Astro, HTML, SCSS, JS, TS…\nConfigurations features ESLint, Prettier, Stylelint…",
"main": "index.js",
"private": true,
"homepage": "https://code.juliancataldo.com",
"repository": {
"type": "git",
"url": "https://github.com/JulianCataldo/web-garden",
"directory": ""
},
"scripts": {
"version": "pnpm lerna version --conventional-commits",
"release": "pnpm lerna publish from-git",
"demo": "cd demo && pnpm run dev",
"test:links": "linkinator http://localhost:2425 2>&1 | tee ./logs/broken-links.log",
"cypress:open": "pnpm run demo & pnpm cypress open",
"cypress:run": "pnpm run demo & pnpm cypress run",
"test": "echo \"Skipping: no pre-commit test specified\" && exit 0",
"docgen": "pnpm tsx markdown-magic.ts",
"prepare": "husky install"
},
"keywords": [],
"author": "Julian Cataldo",
"license": "ISC",
"devDependencies": {
"@commitlint/cli": "17.4.4",
"@commitlint/config-conventional": "17.4.4",
"@commitlint/types": "17.4.4",
"@testing-library/cypress": "9.0.0",
"@types/eslint": "8.21.2",
"@types/markdown-magic": "^1.0.1",
"@types/node": "18.15.3",
"@types/prettier": "2.7.2",
"@typescript-eslint/eslint-plugin": "5.55.0",
"@typescript-eslint/parser": "5.55.0",
"astro": "2.1.3",
"astro-eslint-parser": "0.12.0",
"cypress": "12.8.0",
"cypress-highlight": "1.2.0",
"cypress-real-events": "1.7.6",
"eslint": "8.36.0",
"eslint-config-airbnb": "19.0.4",
"eslint-config-airbnb-base": "15.0.0",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-config-prettier": "8.7.0",
"eslint-import-resolver-typescript": "3.5.3",
"eslint-plugin-astro": "0.24.0",
"eslint-plugin-import": "2.27.5",
"eslint-plugin-jsx-a11y": "6.7.1",
"eslint-plugin-prettier": "4.2.1",
"eslint-plugin-react": "7.32.2",
"eslint-plugin-react-hooks": "4.6.0",
"eslint-plugin-tsdoc": "0.2.17",
"eslint-plugin-vue": "9.9.0",
"lerna": "6.5.1",
"markdown-magic": "^2.6.1",
"markdown-magic-directory-tree": "^1.2.4",
"markdown-magic-install-command": "^2.0.0",
"postcss": "8.4.21",
"postcss-html": "1.5.0",
"prettier": "2.8.4",
"prettier-plugin-astro": "0.8.0",
"stylelint": "15.2.0",
"stylelint-config-prettier": "9.0.5",
"stylelint-config-recess-order": "^4.0.0",
"stylelint-config-recommended-scss": "9.0.1",
"stylelint-config-recommended-vue": "1.4.0",
"stylelint-config-standard": "30.0.1",
"stylelint-config-standard-scss": "7.0.1",
"stylelint-order": "^6.0.3",
"typescript": "4.9.5",
"vite": "4.1.4",
"webdev-configs": "link:configs"
},
"engines": {
"node": ">=16",
"pnpm": "7"
},
"packageManager": "[email protected]",
"dependencies": {
"@types/react": "^18.0.28",
"husky": "8.0.3",
"linkinator": "4.1.2",
"markdown-magic-package-json": "^2.0.2",
"markdown-magic-template": "^1.0.1",
"markdown-magic-version-badge": "^1.1.2",
"remark-gfm": "^3.0.1"
}
}