generated from abhagsain/remix-tailwind-starter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
67 lines (67 loc) · 1.88 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
{
"private": true,
"sideEffects": false,
"scripts": {
"build": "run-s build:*",
"build:css": "npm run generate:css -- --minify",
"build:remix": "remix build",
"dev": "PORT=4002 run-p dev:*",
"worker-dev": "wrangler dev",
"worker-publish": "wrangler publish",
"dev:css": "npm run generate:css -- --watch",
"dev:remix": "remix dev",
"generate:css": "npx tailwindcss -o ./app/tailwind.css",
"start": "cross-env NODE_ENV=production node ./server.js"
},
"dependencies": {
"@headlessui/react": "^1.7.0",
"@heroicons/react": "^1.0.6",
"@remix-run/express": "^1.7.0",
"@remix-run/node": "^1.7.0",
"@remix-run/react": "^1.7.0",
"@remix-run/serve": "^1.7.0",
"@splitbee/web": "^0.3.0",
"@tailwindcss/typography": "^0.5.7",
"classnames": "^2.3.1",
"compression": "^1.7.4",
"cross-env": "^7.0.3",
"express": "^4.18.1",
"isbot": "^3.5.3",
"itty-router": "^2.6.1",
"itty-router-extras": "^0.4.2",
"lodash": "^4.17.21",
"marked": "^4.1.0",
"morgan": "^1.10.0",
"nprogress": "^0.2.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-hot-toast": "^2.4.0",
"react-select": "^5.4.0",
"remix-utils": "^3.3.0",
"semver": "^7.3.7",
"uninstall": "^0.0.0"
},
"devDependencies": {
"@cloudflare/workers-types": "^3.16.0",
"@remix-run/dev": "^1.7.0",
"@remix-run/eslint-config": "^1.7.0",
"@types/lodash": "^4.14.185",
"@types/marked": "^4.0.7",
"@types/nprogress": "^0.2.0",
"@types/react": "^18.0.15",
"@types/react-dom": "^18.0.6",
"@types/semver": "^7.3.12",
"autoprefixer": "^10.4.9",
"concurrently": "^7.4.0",
"eslint": "^8.20.0",
"nodemon": "^2.0.19",
"npm-run-all": "^4.1.5",
"postcss": "^8.4.16",
"tailwindcss": "^3.1.8",
"typescript": "^4.7.4",
"wrangler": "^2.0.28"
},
"engines": {
"node": ">=14"
}
}