-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 1.14 KB
/
package.json
File metadata and controls
35 lines (35 loc) · 1.14 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
{
"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}'",
"update-deps": "npx npm-check-updates -u && npm install"
},
"dependencies": {
"@astrojs/check": "^0.9.7",
"@astrojs/mdx": "^5.0.0",
"@astrojs/react": "^5.0.0",
"@astrojs/rss": "^4.0.17",
"@astrojs/sitemap": "^3.7.1",
"astro": "^6.0.4"
},
"devDependencies": {
"@eslint/js": "^9.39.4",
"@ianvs/prettier-plugin-sort-imports": "^4.7.1",
"@types/lodash": "^4.17.24",
"@types/remove-markdown": "^0.3.4",
"eslint": "^9.39.4",
"eslint-plugin-astro": "^1.6.0",
"eslint-plugin-react-hooks": "^7.0.1",
"prettier": "^3.8.1",
"prettier-plugin-astro": "^0.14.1",
"typescript": "^5.9.3",
"typescript-eslint": "^8.57.0"
}
}