-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
79 lines (79 loc) · 2.63 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
67
68
69
70
71
72
73
74
75
76
77
78
79
{
"name": "evolved-eclipse",
"type": "module",
"version": "2.0.0",
"scripts": {
"astro": "astro",
"build": "astro build",
"check": "astro check",
"dev": "astro dev",
"format": "prettier . --check",
"format:fix": "prettier . --write",
"knip": "knip",
"lint": "eslint .",
"lint:fix": "eslint --fix .",
"stylelint": "stylelint \"src/**/*.{css,astro}\"",
"stylelint:fix": "stylelint \"src/**/*.{css,astro}\" --fix",
"lint:spelling": "cspell . --no-progress --show-context --show-suggestions",
"lint:spelling:fix": "rm -rf project-words.txt && echo \"# Project Words - DO NOT TOUCH - This is updated through CI\" >> project-words.txt && npm run -s lint:spelling -- --words-only --unique --no-exit-code --no-summary \"**\" | LC_ALL=en_US.UTF-8 sort --ignore-case >> project-words.txt",
"preview": "astro preview",
"start": "astro dev",
"test:coverage": "vitest run src --coverage.all true --coverage",
"test:update": "vitest -u run src",
"test:watch": "vitest src",
"test": "vitest run src",
"update:data": "node --experimental-strip-types updateData.ts"
},
"dependencies": {
"@astrojs/check": "0.9.4",
"@astrojs/react": "4.2.0",
"@astrojs/sitemap": "3.2.1",
"@astrojs/tailwind": "6.0.0",
"@playform/inline": "0.1.1",
"astro": "5.2.5",
"astro-compressor": "1.0.0",
"autoprefixer": "10.4.20",
"postcss": "8.5.1",
"react": "19.0.0",
"react-dom": "19.0.0",
"satori": "0.12.1",
"sharp": "0.33.5",
"tailwindcss": "3.4.17",
"zod": "3.24.1"
},
"devDependencies": {
"@eslint/js": "9.19.0",
"@types/eslint__js": "8.42.3",
"@types/node": "22.13.1",
"@types/react": "19.0.8",
"@types/react-dom": "19.0.3",
"@vitest/coverage-istanbul": "3.0.5",
"@vitest/eslint-plugin": "1.1.25",
"babel-plugin-react-compiler": "19.0.0-beta-e552027-20250112",
"cspell": "8.17.3",
"eslint": "9.19.0",
"eslint-plugin-astro": "1.3.1",
"eslint-plugin-perfectionist": "4.8.0",
"eslint-plugin-react": "7.37.4",
"eslint-plugin-react-compiler": "19.0.0-beta-e552027-20250112",
"eslint-plugin-tailwindcss": "3.18.0",
"eslint-plugin-unicorn": "56.0.1",
"globals": "15.14.0",
"jsdom": "26.0.0",
"knip": "5.43.6",
"postcss-html": "1.8.0",
"prettier": "3.4.2",
"prettier-plugin-astro": "0.14.1",
"prettier-plugin-tailwindcss": "0.6.11",
"stylelint": "16.14.1",
"stylelint-config-standard": "37.0.0",
"stylelint-order": "6.0.4",
"typescript": "5.7.3",
"typescript-eslint": "8.23.0",
"vitest": "3.0.5"
},
"engines": {
"node": "22.13.1",
"npm": "11.1.0"
}
}