-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
66 lines (66 loc) · 2.13 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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
{
"name": "photos.reupen.uk",
"private": true,
"description": "photos.reupen.uk website",
"version": "1.0.0",
"author": "Reupen Shah",
"type": "module",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/reupen/photos.reupen.uk"
},
"scripts": {
"astro": "astro",
"check": "astro check --minimumFailingSeverity hint",
"clean": "shx rm -rf dist node_modules/.astro",
"build": "astro build",
"postbuild": "python scripts/clean_up_dist.py",
"dev": "astro dev",
"format:check": "prettier -c .",
"lint": "eslint --max-warnings 0 .",
"preview": "astro preview",
"start": "astro dev",
"pretest": "npm run build",
"test": "python scripts/run_in_playwright_container.py \"npm ci && npm exec --no -- playwright test\"",
"test:report": "playwright show-report test/e2e/output/html",
"pretest:update": "npm run build",
"test:update": "python scripts/run_in_playwright_container.py \"npm ci && npm exec --no -- playwright test --update-snapshots\""
},
"dependencies": {
"@astrojs/sitemap": "^3.2.1",
"@fontsource-variable/inter": "^5.1.0",
"@fortawesome/fontawesome-free": "^6.6.0",
"astro": "^5.0.3",
"date-fns": "^4.1.0",
"sass": "^1.80.6",
"swiped-events": "^1.2.0"
},
"devDependencies": {
"@astrojs/check": "^0.9.4",
"@axe-core/playwright": "^4.10.0",
"@playform/compress": "^0.1.6",
"@playwright/test": "^1.49.0",
"@types/eslint-config-prettier": "^6.11.3",
"@types/eslint-plugin-jsx-a11y": "^6.10.0",
"@types/html-to-text": "^9.0.4",
"@types/node": "^22.10.1",
"astro-purgecss": "^5.0.0",
"cssnano": "^7.0.6",
"eslint": "^9.16.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-astro": "^1.3.1",
"eslint-plugin-jsx-a11y": "^6.10.2",
"exiftool-vendored": "^29.0.0",
"html-to-text": "^9.0.5",
"postcss-custom-media": "^11.0.5",
"postcss-preset-env": "^10.1.1",
"prettier": "^3.3.3",
"prettier-plugin-astro": "^0.14.1",
"purgecss": "^7.0.2",
"sharp": "^0.33.4",
"shx": "^0.3.4",
"typescript": "^5.6.3",
"typescript-eslint": "^8.17.0"
}
}