-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathpackage.json
More file actions
86 lines (86 loc) · 2.79 KB
/
Copy pathpackage.json
File metadata and controls
86 lines (86 loc) · 2.79 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
{
"name": "remix-website",
"version": "30.1.0",
"private": true,
"description": "",
"license": "",
"sideEffects": false,
"type": "module",
"scripts": {
"build": "pnpm run build:css && pnpm run typecheck",
"build:analyze": "pnpm run build",
"build:css": "postcss app/styles/global.css app/styles/app.css app/styles/home.css app/styles/md.css app/styles/jam-2025.css --dir public/styles",
"dev": "concurrently -k --names css,app \"pnpm run dev:css\" \"pnpm run dev:server\"",
"dev:css": "pnpm run build:css --watch",
"dev:server": "cross-env NODE_ENV=development PORT=44100 node --watch --import remix/node-tsx server.ts",
"format": "prettier --write ./",
"deploy": "flyctl deploy --build-arg REMIX_TOKEN=${REMIX_TOKEN}",
"push:stage": "git tag -f stage && git push origin stage -f",
"browser": "playwright-cli",
"start": "cross-env NODE_ENV=production node --import remix/node-tsx server.ts",
"preview": "cross-env NODE_ENV=production ASSET_BUILD_ID=local-preview node --env-file=.env --import remix/node-tsx server.ts",
"lint": "oxlint .",
"lint:fix": "oxlint . --fix",
"pretest": "pnpm run build:css",
"test": "cross-env NODE_ENV=test remix test",
"test:coverage": "cross-env NODE_ENV=test COVERAGE=1 remix test --coverage",
"test:install-browsers": "playwright install chromium",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"@resvg/resvg-js": "2.6.2",
"@shopify/storefront-api-client": "1.0.10",
"cross-env": "10.1.0",
"cssnano": "6.1.2",
"emoji-regex": "10.6.0",
"escape-goat": "4.0.0",
"fathom-client": "3.7.2",
"feed": "4.2.2",
"front-matter": "4.0.2",
"lru-cache": "10.4.3",
"parse-numeric-range": "1.3.0",
"rehype-autolink-headings": "7.1.0",
"rehype-slug": "6.0.0",
"rehype-stringify": "10.0.1",
"remark-gfm": "4.0.1",
"remark-parse": "11.0.0",
"remark-rehype": "11.1.2",
"remix": "3.0.0-beta.5",
"satori": "0.26.0",
"semver": "7.7.4",
"shiki": "0.14.7",
"three": "0.184.0",
"unified": "11.0.5",
"unist-util-visit": "5.1.0",
"yaml": "2.8.4"
},
"devDependencies": {
"@playwright/cli": "0.1.13",
"@playwright/test": "1.60.0",
"@types/hast": "3.0.4",
"@types/node": "24.10.13",
"@types/semver": "7.7.1",
"@types/three": "0.184.0",
"@types/unist": "3.0.3",
"autoprefixer": "10.4.24",
"concurrently": "9.2.1",
"oxlint": "1.50.0",
"postcss": "8.5.14",
"postcss-cli": "11.0.1",
"postcss-import": "16.1.1",
"prettier": "3.8.1",
"prettier-plugin-tailwindcss": "0.7.2",
"tailwindcss": "3.4.19",
"typescript": "5.9.3",
"vite": "7.3.2"
},
"engines": {
"node": ">=24.3.0"
},
"packageManager": "pnpm@10.30.1",
"pnpm": {
"overrides": {
"svgo": "3.3.3"
}
}
}