-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
63 lines (63 loc) · 1.81 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
{
"name": "blog",
"type": "module",
"version": "1.0.0",
"author": "Robert Damaceno Santos <[email protected]>",
"repository": "https://github.com/RobertDS07/blog",
"license": "CC-BY-4.0",
"engines": {
"node": "18.15.0"
},
"scripts": {
"dev": "astro dev",
"test": "vitest",
"test:ci": "vitest --run",
"build": "astro check && tsc --noEmit && astro build",
"preview": "astro preview",
"lint": "eslint 'src/**/*.{js,astro}'",
"lint:fix": "eslint 'src/**/*.{js,astro}' --fix",
"depcheck": "depcheck",
"audit": "yarn-audit-fix --audit-level=moderate",
"prepare": "husky install"
},
"resolutions": {
"wrap-ansi": "7.0.0"
},
"dependencies": {
"@astrojs/mdx": "^1.1.5",
"@astrojs/sitemap": "^3.0.3",
"@astrojs/solid-js": "^3.0.2",
"@astrojs/tailwind": "^5.0.2",
"@astrojs/ts-plugin": "^1.3.1",
"astro": "^3.6.1",
"class-variance-authority": "0.6.0",
"date-fns": "3.3.1",
"solid-js": "1.7.7",
"tailwindcss": "3.3.5"
},
"devDependencies": {
"@astrojs/check": "^0.3.1",
"@solidjs/testing-library": "0.8.4",
"@tailwindcss/typography": "0.5.9",
"@testing-library/jest-dom": "6.0.0",
"@typescript-eslint/parser": "5.57.1",
"depcheck": "1.4.3",
"eslint": "8.44.0",
"eslint-config-prettier": "8.8.0",
"eslint-plugin-astro": "0.29.1",
"eslint-plugin-import-helpers": "1.3.1",
"eslint-plugin-jsx-a11y": "6.7.1",
"eslint-plugin-prettier": "5.0.1",
"husky": "8.0.3",
"jsdom": "22.1.0",
"prettier": "3.1.0",
"prettier-plugin-astro": "^0.12.2",
"prettier-plugin-tailwindcss": "0.5.7",
"puppeteer": "21.7.0",
"typescript": "^5.1.0",
"vite-plugin-solid": "2.7.0",
"vite-plugin-svg-inject": "1.0.10",
"vitest": "0.34.1",
"yarn-audit-fix": "9.3.12"
}
}