-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
70 lines (70 loc) · 2.23 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
{
"name": "my-remix-app",
"private": true,
"sideEffects": false,
"type": "module",
"scripts": {
"build": "remix vite:build",
"deploy": "pnpm run build && wrangler pages deploy",
"dev": "remix vite:dev",
"lint": "eslint --cache --cache-location ./node_modules/.cache/eslint .",
"format": "dprint fmt",
"start": "wrangler pages dev ./build/client",
"typecheck": "tsc",
"typegen": "wrangler types",
"preview": "pnpm run build && wrangler pages dev",
"cf-typegen": "wrangler types",
"test": "pnpm playwright test",
"test:ui": "pnpm playwright test --ui",
"test:ct": "pnpm playwright test -c playwright-ct.config.ts",
"test:ct:ui": "pnpm playwright test -c playwright-ct.config.ts --ui"
},
"dependencies": {
"@radix-ui/react-separator": "1.1.0",
"@remix-run/cloudflare": "2.13.1",
"@remix-run/cloudflare-pages": "2.13.1",
"@remix-run/react": "2.13.1",
"isbot": "^4.1.0",
"phosphor-react": "1.4.0",
"react": "18.3.1",
"react-aria-components": "1.4.0",
"react-dom": "18.3.1",
"react-globe.gl": "2.27.2",
"react-spring": "9.7.4",
"remix-utils": "7.6.0",
"three": "0.168.0"
},
"devDependencies": {
"@cloudflare/workers-types": "4.20240925.0",
"@playwright/experimental-ct-react": "1.48.0",
"@playwright/test": "1.47.2",
"@remix-run/dev": "2.13.1",
"@types/node": "^22.7.4",
"@types/react": "18.3.11",
"@types/react-dom": "18.3.0",
"@types/three": "0.168.0",
"@typescript-eslint/eslint-plugin": "7.17.0",
"@typescript-eslint/parser": "7.17.0",
"autoprefixer": "10.4.20",
"clsx": "2.1.1",
"dprint": "0.47.2",
"eslint": "8.57.0",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jsx-a11y": "^6.9.0",
"eslint-plugin-react": "^7.35.0",
"eslint-plugin-react-hooks": "^4.6.2",
"polished": "4.3.1",
"postcss": "8.4.47",
"tailwind-merge": "2.5.3",
"tailwindcss": "3.4.13",
"typescript": "5.6.2",
"vite": "5.4.8",
"vite-tsconfig-paths": "5.0.1",
"wrangler": "3.80.0"
},
"engines": {
"node": ">=20.0.0"
},
"packageManager": "[email protected]+sha256.a61b67ff6cc97af864564f4442556c22a04f2e5a7714fbee76a1011361d9b726"
}