-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 2.03 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 2.03 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
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
{
"name": "astrim",
"type": "module",
"version": "0.0.1",
"packageManager": "yarn@1.22.22",
"license": "MIT",
"scripts": {
"dev": "astro dev",
"build": "astro build",
"preview": "astro preview",
"astro": "astro",
"codegen": "graphql-codegen --config codegen.ts",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"test": "PLAYWRIGHT_HTML_OUTPUT_DIR=test-report playwright test -c playwright-ct.config.ts",
"test:ui": "yarn test --ui",
"e2e": "playwright test",
"e2e:ui": "yarn e2e --ui",
"postinstall": "patch-package"
},
"dependencies": {
"@astrojs/cloudflare": "12.4.0",
"@astrojs/mdx": "4.2.3",
"@astrojs/node": "9.1.3",
"@astrojs/react": "^4.2.3",
"@astrojs/rss": "^4.0.11",
"@astrojs/sitemap": "3.3.0",
"@astrojs/vercel": "8.1.3",
"@base-ui-components/react": "^1.0.0-alpha.7",
"@nanostores/react": "^1.0.0",
"astro": "5.6.1",
"clsx": "^2.1.1",
"graphql": "^16.10.0",
"graphql-request": "^7.1.2",
"masonic": "^4.0.1",
"nanostores": "^0.11.4",
"react": "^19.1.0",
"react-dom": "^19.1.0",
"swiper": "^11.2.6"
},
"devDependencies": {
"@antfu/eslint-config": "^4.11.0",
"@babel/core": "^7.26.10",
"@eslint-react/eslint-plugin": "^1.52.9",
"@graphql-codegen/cli": "5.0.5",
"@playwright/experimental-ct-react": "^1.51.1",
"@playwright/test": "^1.51.1",
"@rollup/plugin-graphql": "^2.0.5",
"@shopify/graphql-codegen": "^0.1.0",
"@types/node": "^22.14.0",
"@types/react": "^19.1.0",
"@types/react-dom": "^19.1.6",
"@unocss/eslint-plugin": "^66.1.0-beta.10",
"@unocss/reset": "^66.1.0-beta.10",
"eslint": "^9.24.0",
"eslint-plugin-astro": "^1.3.1",
"eslint-plugin-format": "^1.0.1",
"eslint-plugin-react-hooks": "^5.2.0",
"eslint-plugin-react-refresh": "^0.4.19",
"globals": "^16.3.0",
"patch-package": "^8.0.0",
"postcss": "^8.5.3",
"postinstall-postinstall": "^2.1.0",
"typescript": "^5.8.3",
"unocss": "^66.5.0",
"vite": "^6.3.2"
}
}