-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
52 lines (52 loc) · 1.4 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:*\"",
"build:css": "yarn generate:css --minify",
"build:remix": "remix build",
"dev": "run-p \"dev:*\"",
"dev:css": "yarn generate:css --watch",
"dev:remix": "remix dev",
"generate:css": "npx tailwindcss -i ./styles/tailwind.css -o ./app/tailwind.css",
"start": "dotenv -e .env remix-serve build",
"typecheck": "tsc -b",
"format": "prettier -w ."
},
"dependencies": {
"@remix-run/node": "*",
"@remix-run/react": "*",
"@remix-run/serve": "*",
"@types/react-slick": "^0.23.10",
"@vercel/analytics": "^0.1.6",
"@vercel/node": "^2.8.2",
"axios": "^1.2.2",
"clsx": "^1.2.1",
"dotenv-cli": "^7.1.0",
"isbot": "^3.6.5",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-icons": "^4.7.1",
"react-slick": "^0.29.0",
"react-use": "^17.4.0",
"remix-utils": "^5.1.0"
},
"devDependencies": {
"@remix-run/dev": "^1.9.0",
"@remix-run/eslint-config": "^1.9.0",
"@types/react": "^18.0.25",
"@types/react-dom": "^18.0.8",
"autoprefixer": "^10.4.13",
"concurrently": "^7.6.0",
"eslint": "^8.27.0",
"postcss": "^8.4.20",
"prettier": "^2.8.1",
"prettier-plugin-tailwindcss": "^0.2.1",
"tailwindcss": "^3.2.4",
"typescript": "^4.8.4",
"yarn-run-all": "^3.1.1"
},
"engines": {
"node": ">=14"
}
}