-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.46 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
{
"private": true,
"sideEffects": false,
"scripts": {
"build": "run-s build:css build:remix",
"build:css": "npm run generate:css -- --minify",
"build:remix": "remix build",
"dev": "remix build && run-p \"dev:*\"",
"dev:css": "npm run generate:css -- --watch",
"dev:remix": "remix watch",
"dev:wrangler": "cross-env NODE_ENV=development npm run wrangler",
"start": "cross-env NODE_ENV=production npm run wrangler",
"generate:css": "npx tailwindcss -o ./app/tailwind.css",
"wrangler": "wrangler pages dev ./public",
"typecheck": "tsc"
},
"dependencies": {
"@remix-run/cloudflare": "^1.11.1",
"@remix-run/cloudflare-pages": "^1.11.1",
"@remix-run/react": "^1.11.1",
"cross-env": "^7.0.3",
"daisyui": "^2.49.0",
"jotai": "^2.0.0",
"markdown-to-jsx": "^7.1.9",
"react": "^18.2.0",
"react-adsense": "^0.1.0",
"react-dom": "^18.2.0",
"react-helmet": "^6.1.0",
"react-icons": "^4.7.1",
"react-textarea-autosize": "^8.4.0",
"remix-utils": "^6.0.0",
"usehooks-ts": "^2.9.1"
},
"devDependencies": {
"@cloudflare/workers-types": "^3.18.0",
"@remix-run/dev": "^1.11.1",
"@remix-run/eslint-config": "^1.11.1",
"@tailwindcss/typography": "^0.5.9",
"@types/react": "^18.0.25",
"@types/react-dom": "^18.0.8",
"env-cmd": "^10.1.0",
"eslint": "^8.27.0",
"npm-run-all": "^4.1.5",
"tailwind-scrollbar": "^2.1.0",
"tailwindcss": "^3.2.4",
"typescript": "^4.8.4",
"wrangler": "^2.2.1"
},
"engines": {
"node": ">=16.13"
}
}