-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 1.17 KB
/
Copy pathpackage.json
File metadata and controls
37 lines (37 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
{
"name": "aleksandra-ivanova-portfolio",
"version": "0.1.0",
"private": true,
"type": "module",
"scripts": {
"dev": "ASTRO_TELEMETRY_DISABLED=1 astro dev",
"check": "ASTRO_TELEMETRY_DISABLED=1 astro check",
"lint": "eslint .",
"format": "prettier --check .",
"format:write": "prettier --write .",
"build": "ASTRO_TELEMETRY_DISABLED=1 astro build && node scripts/generate-sitemap.mjs && node scripts/check-internal-links.mjs",
"preview": "ASTRO_TELEMETRY_DISABLED=1 astro preview",
"import:publications": "node scripts/import-publications.mjs && prettier --write src/data/publications.ts",
"icons": "node scripts/make-icons.mjs",
"test:e2e": "playwright test",
"test": "npm run build && npm run test:e2e"
},
"dependencies": {
"astro": "^7.0.9"
},
"devDependencies": {
"@astrojs/check": "^0.9.4",
"@eslint/js": "^9.15.0",
"@playwright/test": "^1.49.0",
"@types/node": "^26.1.1",
"eslint": "^9.15.0",
"eslint-plugin-astro": "^1.3.1",
"prettier": "^3.3.3",
"prettier-plugin-astro": "^0.14.1",
"typescript": "^5.6.3",
"typescript-eslint": "^8.15.0"
},
"engines": {
"node": ">=22.12.0"
}
}