-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
124 lines (124 loc) · 3.69 KB
/
package.json
File metadata and controls
124 lines (124 loc) · 3.69 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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
{
"name": "@cutting/frontend-support",
"version": "0.4.0",
"private": true,
"sideEffects": false,
"type": "module",
"scripts": {
"copy-blog-posts": "rm -rf server/blog-posts/* && cp -rf blog-posts server",
"build": "cross-env NODE_ENV=production remix build && pnpm copy-blog-posts",
"dev": "pnpm copy-blog-posts && remix dev --manual -c \"arc sandbox -e testing\"",
"deploy:web": "./deploy.sh",
"lint": "eslint --fix .",
"start": "cross-env NODE_ENV=production arc sandbox",
"typecheck": "tsc"
},
"dependencies": {
"@architect/architect": "^11.1.0",
"@cutting/component-library": "workspace:*",
"@cutting/hooks": "workspace:*",
"@cutting/markdown": "workspace:*",
"@cutting/react-hook-form-components": "workspace:*",
"@cutting/use-get-parent-size": "workspace:*",
"@cutting/useful-types": "workspace:*",
"@cutting/util": "workspace:*",
"@floating-ui/react": "^0.27.5",
"@gsap/shockingly": "^3.12.7",
"@remix-run/architect": "^2.16.0",
"@remix-run/css-bundle": "^2.16.0",
"@remix-run/node": "^2.16.0",
"@remix-run/react": "^2.16.0",
"@unpic/placeholder": "^0.1.2",
"@cutting/assert": "workspace:*",
"@unpic/react": "^1.0.1",
"classnames": "^2.5.1",
"cloudinary-build-url": "^0.2.4",
"cross-env": "^7.0.3",
"dedent": "^1.5.3",
"format": "^0.2.2",
"front-matter": "^4.0.2",
"gsap": "npm:@gsap/shockingly@^3.12.5",
"image-size": "^2.0.0",
"isbot": "5.1.23",
"js-yaml": "^4.1.0",
"katex": "^0.16.21",
"mdx-bundler": "^10.1.0",
"micromark-util-chunked": "^2.0.1",
"react-calendly": "^4.3.1",
"react-device-detect": "^2.2.3",
"react-hook-form": "7.54.2",
"react-is": "^19.0.0",
"reading-time": "^1.5.0",
"rehype-highlight": "^7.0.2",
"rehype-mathjax": "^7.1.0",
"rehype-preset-minify": "^7.0.1",
"rehype-prism-plus": "^2.0.0",
"rehype-raw": "^7.0.0",
"rehype-autolink-headings": "^7.1.0",
"remark-breaks": "^4.0.0",
"remark-gfm": "^4.0.1",
"remark-math": "^6.0.0",
"rehype-mdx-import-media": "^1.2.0",
"rehype-slug": "^6.0.0",
"resize-observer-polyfill": "^1.5.1",
"source-map-support": "^0.5.21",
"unist-util-visit": "^5.0.0",
"use-debounce": "^10.0.4",
"@vanilla-extract/css": "^1.17.1",
"@vanilla-extract/dynamic": "^2.1.2",
"@vanilla-extract/sprinkles": "^1.6.3"
},
"devDependencies": {
"@babel/runtime": "^7.26.9",
"@cld-apis/types": "^0.1.6",
"@commander-js/extra-typings": "^13.1.0",
"@cutting/cloudinary-blurhash": "workspace:*",
"@esbuild-plugins/node-resolve": "^0.2.2",
"@fal-works/esbuild-plugin-global-externals": "^2.1.2",
"@pnpm/find-workspace-packages": "^6.0.9",
"@remix-run/dev": "^2.16.0",
"@remix-run/eslint-config": "^2.16.0",
"@types/js-yaml": "^4.0.9",
"@types/react": "^19.0.10",
"@types/react-dom": "^19.0.4",
"@types/source-map-support": "^0.5.10",
"browserslist": "^4.24.4",
"esbuild": "^0.25.0",
"eslint-config-prettier": "10.0.2",
"eslint-plugin-prettier": "^5.2.3",
"gray-matter": "^4.0.3",
"js-yaml": "^4.1.0",
"npm-run-all2": "^7.0.2",
"prettier": "3.5.3",
"react": "19.0.0",
"react-dom": "19.0.0",
"toml": "^3.0.0",
"tsx": "^4.19.3",
"uuid": "^11.1.0",
"vite": "6.2.0",
"vite-tsconfig-paths": "^5.1.4"
},
"peerDependencies": {
"react": "19.0.0",
"react-dom": "19.0.0"
},
"files": [
"public",
"public/build",
"server",
"app.arc",
"plugin-remix.js"
],
"engines": {
"node": ">=18.0.0"
},
"volta": {
"extends": "../../package.json"
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
]
}