-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1.17 KB
/
Copy pathpackage.json
File metadata and controls
38 lines (38 loc) · 1.17 KB
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
{
"name": "jwn.gr",
"private": true,
"type": "module",
"version": "2.0.0",
"engines": {
"node": "24.16.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}'",
"update-deps": "npx npm-check-updates -u && npm install"
},
"dependencies": {
"@astrojs/check": "0.9.10",
"@astrojs/mdx": "7.0.5",
"@astrojs/react": "6.0.2",
"@astrojs/rss": "4.0.19",
"@astrojs/sitemap": "3.7.3",
"astro": "7.1.6"
},
"devDependencies": {
"@eslint/js": "10.0.1",
"@ianvs/prettier-plugin-sort-imports": "4.7.1",
"@types/lodash": "4.17.25",
"@types/remove-markdown": "0.3.4",
"eslint": "10.8.0",
"eslint-plugin-astro": "1.7.0",
"eslint-plugin-react-hooks": "7.1.1",
"prettier": "3.9.6",
"prettier-plugin-astro": "0.14.1",
"typescript": "6.0.3",
"typescript-eslint": "8.59.4"
}
}