-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.34 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
{
"name": "remix-template-cloudflare-pages",
"private": true,
"description": "",
"license": "",
"sideEffects": false,
"scripts": {
"build": "run-s build:*",
"build:css": "npm run generate:css -- --minify",
"build:remix": "remix build",
"dev": "run-p dev:*",
"dev:css": "npm run generate:css -- --watch",
"dev:remix": "remix watch",
"generate:css": "npx tailwindcss -i ./styles/tailwind.css -o ./app/tailwind.css",
"dev:wrangler": "cross-env NODE_ENV=development wrangler pages dev ./public --kv sessionStorage --binding DO_HOST=\"localhost:56082\"",
"start": "cross-env NODE_ENV=production npm run dev:wrangler"
},
"dependencies": {
"@heroicons/react": "^1.0.6",
"@remix-run/cloudflare": "^1.4.3",
"@remix-run/cloudflare-pages": "^1.4.3",
"@remix-run/react": "^1.4.3",
"cross-env": "^7.0.3",
"framer-motion": "^6.3.3",
"itty-router": "^2.6.1",
"react": "^17.0.2",
"react-dom": "^17.0.2"
},
"devDependencies": {
"@cloudflare/workers-types": "^3.10.0",
"@remix-run/dev": "^1.4.3",
"@remix-run/eslint-config": "^1.4.3",
"@types/react": "^17.0.45",
"@types/react-dom": "^17.0.17",
"eslint": "^8.15.0",
"npm-run-all": "^4.1.5",
"tailwindcss": "^3.0.24",
"typescript": "^4.6.4",
"wrangler": "beta"
},
"engines": {
"node": ">=14"
}
}