-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 1001 Bytes
/
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
{
"name": "fham.dev",
"version": "0.0.0",
"homepage": "https://fham.dev",
"scripts": {
"build": "rescript build -with-deps",
"start": "rescript build -with-deps -w -ws 9999",
"clean": "rescript clean",
"deploy": "gh-pages -d dist",
"server": "pages start src/App.mjs 3000",
"prerender": "pages build src/App.mjs",
"release": "rm -fr dist && bun run build && bun run prerender && bun run deploy"
},
"keywords": [
"rescript"
],
"author": "Florian Hammerschmidt",
"license": "MIT",
"dependencies": {
"@emotion/css": "^11.1.3",
"@rescript/core": "1.6.1",
"@rescript/react": "^0.13.0",
"gh-pages": "^6.2.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"rescript-pages": "^4.0.0"
},
"devDependencies": {
"rescript": "11.1.4"
},
"resolutions": {
"**/@emotion/css": "11.1.3",
"**/@emotion/server": "11.0.0"
},
"patchedDependencies": {
"[email protected]": "patches/[email protected]"
}
}