-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
63 lines (63 loc) · 2.01 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
{
"name": "remix-template-vercel",
"private": true,
"description": "",
"license": "",
"sideEffects": false,
"scripts": {
"build": "run-s build:*",
"build:css": "npm run generate:css -- --minify",
"build:remix": "cross-env NODE_ENV=production remix build",
"build:server": "esbuild --platform=node --format=cjs ./server.ts --outdir=build",
"deploy": "fly deploy --remote-only",
"dev": "run-p dev:*",
"dev:server": "cross-env NODE_ENV=development node --inspect --require ./node_modules/dotenv/config ./build/server.js",
"dev:build": "cross-env NODE_ENV=development npm run build:server -- --watch",
"dev:remix": "cross-env NODE_ENV=development remix watch",
"dev:css": "npm run generate:css -- --watch",
"generate:css": "npx tailwindcss -o ./app/styles/tailwind.css",
"start": "cross-env NODE_ENV=production node ./build/server.js"
},
"dependencies": {
"@next-boost/hybrid-disk-cache": "^0.3.0",
"@remix-run/express": "^1.4.3",
"@remix-run/node": "^1.4.3",
"@remix-run/react": "^1.4.3",
"@vercel/node": "^1.14.0",
"axios": "^0.27.2",
"clsx": "^1.1.1",
"compression": "^1.7.4",
"cross-env": "^7.0.3",
"express": "^4.18.1",
"framer-motion": "^6.3.3",
"lru-cache": "^7.9.0",
"morgan": "^1.10.0",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-hot-toast": "^2.2.0",
"remix-image": "^0.3.18",
"sharp": "^0.30.4",
"tiny-invariant": "^1.2.0"
},
"devDependencies": {
"@remix-run/dev": "^1.4.3",
"@remix-run/eslint-config": "^1.4.3",
"@remix-run/serve": "^1.4.3",
"@types/compression": "^1.7.2",
"@types/express": "^4.17.13",
"@types/lru-cache": "^7.6.1",
"@types/morgan": "^1.9.3",
"@types/react": "^17.0.24",
"@types/react-dom": "^17.0.9",
"@types/sharp": "^0.30.2",
"dotenv": "^16.0.0",
"esbuild": "^0.14.38",
"eslint": "^8.11.0",
"npm-run-all": "^4.1.5",
"tailwindcss": "^3.0.24",
"typescript": "^4.5.5"
},
"engines": {
"node": ">=14"
}
}