-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
33 lines (33 loc) · 1.04 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
{
"name": "jwn.gr",
"private": true,
"type": "module",
"version": "2.0.0",
"scripts": {
"start": "astro dev",
"build": "astro check && astro build",
"preview": "astro preview",
"lint": "prettier --check '**/*.{js,jsx,ts,tsx,json,css,astro,mjs}' && echo 'Running ESLint...' && eslint src --report-unused-disable-directives --max-warnings 0 && echo 'All files pass linting!'",
"format": "prettier --write '**/*.{js,jsx,ts,tsx,json,css,astro,mjs}'"
},
"dependencies": {
"@astrojs/check": "^0.9.4",
"@astrojs/mdx": "^3.1.9",
"@astrojs/react": "^3.6.2",
"@astrojs/rss": "^4.0.9",
"@astrojs/sitemap": "^3.2.1",
"astro": "^4.16.8"
},
"devDependencies": {
"@eslint/js": "^9.14.0",
"@ianvs/prettier-plugin-sort-imports": "^4.3.1",
"@types/eslint__js": "^8.42.3",
"eslint": "^9.14.0",
"eslint-plugin-astro": "^1.3.0",
"eslint-plugin-react-hooks": "^5.0.0",
"prettier": "^3.3.3",
"prettier-plugin-astro": "^0.14.1",
"typescript": "^5.6.3",
"typescript-eslint": "^8.12.2"
}
}