-
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.5 KB
/
Copy pathpackage.json
File metadata and controls
38 lines (38 loc) · 1.5 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": "relocation-companion-2027",
"version": "0.0.58",
"private": true,
"description": "Mobile-first React PWA для русскоязычных релокантов. CDN-based (без бандлера). Этот package.json обслуживает только dev-инструменты: валидацию JSON-досье, парсинг JSX, аудит источников, генерацию PWA-иконок.",
"homepage": "https://github.com/LongWinterNight/relocation-companion",
"repository": {
"type": "git",
"url": "https://github.com/LongWinterNight/relocation-companion.git"
},
"author": "LongWinterNight",
"license": "UNLICENSED",
"engines": {
"node": ">=18.0.0"
},
"type": "module",
"scripts": {
"validate:locations": "node scripts/validate-locations.mjs",
"validate:jsx": "node scripts/validate-jsx.mjs",
"audit:freshness": "node scripts/audit-freshness.mjs",
"audit:urls": "node scripts/audit-urls.mjs",
"generate:icons": "node scripts/generate-icons.mjs",
"build": "node scripts/build.mjs",
"dev": "node scripts/build.mjs --watch",
"serve": "node scripts/serve.mjs",
"test:unit": "node --test",
"test:smoke": "playwright test",
"test": "npm run validate:jsx && npm run validate:locations && npm run test:unit && npm run test:smoke"
},
"devDependencies": {
"@babel/parser": "^7.29.0",
"@playwright/test": "^1.60.0",
"ajv": "^8.17.1",
"ajv-formats": "^3.0.1",
"esbuild": "^0.28.0",
"sharp": "^0.34.0"
}
}