-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
75 lines (75 loc) · 2.02 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
71
72
73
74
75
{
"name": "easyword.kr",
"version": "1.0.0",
"type": "module",
"scripts": {
"start": "concurrently \"bun run build:watch\" \"bun run relay:watch\" \"bun run dev\"",
"build": "rescript",
"build:deps": "rescript build -with-deps",
"build:watch": "rescript build -w",
"relay": "rescript-relay-compiler",
"relay:watch": "rescript-relay-compiler --watch",
"relay:fmt": "rescript-relay-cli format-all-graphql",
"clean": "rescript clean -with-deps",
"dev": "bunx --bun vite",
"preview": "vite preview",
"release": "vite build"
},
"keywords": [
"rescript"
],
"author": "Jay Lee <[email protected]>",
"license": "MIT",
"packageManager": "[email protected]",
"browserslist": [
"last 2 versions",
"not dead",
"> 0.2% in KR",
"iOS >= 12.5"
],
"dependencies": {
"@glennsl/rescript-fetch": "^0.2.1",
"@heroicons/react": "^2.1.5",
"@rescript/core": "^1.5.2",
"@rescript/react": "^0.12.2",
"better-react-mathjax": "^2.0.3",
"daisyui": "^4.12.10",
"firebase": "^9.23.0",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-error-boundary": "^4.0.13",
"react-icons": "^5.3.0",
"react-infinite-scroll-component": "^6.1.0",
"react-relay": "18.2.0",
"react-select": "^5.8.0",
"react-social-login-buttons": "^4.1.0",
"reactfire": "^4.2.3",
"relay-runtime": "18.2.0",
"rescript-relay": "^3.1.0",
"rescript-webapi": "^0.9.1",
"uuid": "^9.0.1"
},
"devDependencies": {
"@tailwindcss/forms": "^0.5.7",
"@tailwindcss/typography": "^0.5.14",
"@vitejs/plugin-react-swc": "^3.7.0",
"autoprefixer": "^10.4.20",
"concurrently": "^5.3.0",
"lightningcss": "^1.26.0",
"postcss": "^8.4.41",
"postcss-preset-env": "^9.6.0",
"rescript": "^11.1.3",
"tailwindcss": "^3.4.10",
"terser": "^5.31.6",
"vite": "^5.4.0",
"@vitejs/plugin-legacy": "^5.4.1"
},
"trustedDependencies": [
"@swc/core",
"core-js",
"esbuild",
"protobufjs",
"rescript",
"rescript-relay"
]
}