-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
100 lines (100 loc) · 3.42 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
98
99
100
{
"name": "boilerplate_astro_react",
"version": "1.0.0",
"private": true,
"license": "MIT",
"author": "Éverton Toffanetto",
"description": "This application is a boilerplate for complex and large systems, especially those that need to scale with security and code quality.",
"repository": "https://github.com/everton-dgn/boilerplate_astro_react",
"scripts": {
"dev": "astro dev",
"dev:verbose": "astro dev --verbose",
"build": "astro build",
"preview": "astro preview",
"sync": "astro sync",
"astro": "astro",
"lint": "eslint --cache src --ext ts,tsx,astro --max-warnings=0 && astro check",
"lint:fix": "eslint --cache --fix src --ext ts,tsx,astro",
"format": "prettier --cache --write src",
"check:format": "prettier --cache --check src",
"typecheck": "tsc --noEmit",
"test": "vitest run",
"test:c": "vitest run --coverage",
"test:w": "vitest",
"test:ui": "vitest --ui --coverage.enabled=true",
"test:ci": "vitest run related",
"test:e2e": "playwright test",
"test:e2e:ui": "playwright test --ui",
"test:e2e:codegen": "playwright codegen http://localhost:4321",
"check:update": "yarn upgrade-interactive --latest",
"postinstall": "npx lefthook install"
},
"type": "module",
"dependencies": {
"@astrojs/react": "4.2.0",
"@fontsource/poppins": "5.1.1",
"astro": "5.3.0",
"clsx": "2.1.1",
"react": "19.0.0",
"react-dom": "19.0.0"
},
"devDependencies": {
"@astrojs/check": "0.9.4",
"@astrojs/rss": "4.0.11",
"@astrojs/sitemap": "3.2.1",
"@astrojs/ts-plugin": "1.10.4",
"@astrojs/vercel": "8.0.7",
"@commitlint/cli": "19.6.1",
"@commitlint/config-conventional": "19.6.0",
"@playwright/test": "1.50.0",
"@semantic-release/commit-analyzer": "13.0.0",
"@semantic-release/git": "10.0.1",
"@semantic-release/github": "10.1.7",
"@semantic-release/npm": "12.0.1",
"@testing-library/dom": "10.4.0",
"@testing-library/jest-dom": "6.6.3",
"@testing-library/react": "16.2.0",
"@testing-library/user-event": "14.6.1",
"@types/jsdom-global": "3.0.7",
"@types/node": "22.10.10",
"@types/react": "19.0.8",
"@types/react-dom": "19.0.3",
"@typescript-eslint/eslint-plugin": "7.16.1",
"@typescript-eslint/parser": "7.16.1",
"@vitest/coverage-v8": "3.0.4",
"@vitest/ui": "3.0.4",
"astro-eslint-parser": "1.2.1",
"autoprefixer": "10.4.20",
"cssnano": "7.0.6",
"dotenv": "16.4.7",
"eslint": "8.57.0",
"eslint-config-love": "47.0.0",
"eslint-config-prettier": "9.1.0",
"eslint-import-resolver-typescript": "3.6.1",
"eslint-plugin-astro": "1.3.1",
"eslint-plugin-import": "2.29.1",
"eslint-plugin-import-helpers": "1.3.1",
"eslint-plugin-jest": "28.11.0",
"eslint-plugin-jest-dom": "5.5.0",
"eslint-plugin-jsx-a11y": "6.9.0",
"eslint-plugin-n": "17.15.1",
"eslint-plugin-playwright": "2.2.0",
"eslint-plugin-prettier": "5.2.1",
"eslint-plugin-promise": "6.5.1",
"eslint-plugin-react": "7.37.4",
"eslint-plugin-sonarjs": "1.0.4",
"eslint-plugin-testing-library": "7.1.1",
"jsdom": "26.0.0",
"jsdom-global": "3.0.2",
"lefthook": "1.10.10",
"postcss": "8.5.1",
"postcss-import": "16.1.0",
"postcss-preset-env": "10.1.3",
"prettier": "3.3.3",
"prettier-plugin-astro": "0.14.1",
"semantic-release": "24.1.0",
"sharp": "0.33.5",
"typescript": "5.5.4",
"vitest": "3.0.4"
}
}