-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1.13 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
{
"private": true,
"sideEffects": false,
"scripts": {
"deploy": "fly deploy --remote-only",
"start": "remix-serve build",
"build": "npm run build:css && remix build",
"build:css": "tailwindcss -m -i ./styles/app.css -o app/styles/app.css",
"dev": "concurrently \"npm run dev:css\" \"remix dev\"",
"dev:css": "tailwindcss -w -i ./styles/app.css -o app/styles/app.css"
},
"dependencies": {
"@lottiefiles/lottie-player": "^1.7.1",
"@remix-run/node": "^2.9.2",
"@remix-run/react": "^1.12.0",
"@remix-run/serve": "^2.9.2",
"@splidejs/react-splide": "^0.7.12",
"daisyui": "^2.31.0",
"framer-motion": "^10.12.2",
"isbot": "^3.7.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"tiny-invariant": "^1.3.1"
},
"devDependencies": {
"@remix-run/dev": "^1.15.0",
"@remix-run/eslint-config": "^1.12.0",
"@types/react": "^18.2.37",
"@types/react-dom": "^18.0.6",
"autoprefixer": "^10.4.12",
"concurrently": "^8.0.1",
"eslint": "^8.54.0",
"postcss": "^8.4.38",
"tailwindcss": "^3.2.6",
"typescript": "^5.0.3"
},
"engines": {
"node": ">=14"
}
}