-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
33 lines (33 loc) · 978 Bytes
/
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
{
"private": true,
"sideEffects": false,
"scripts": {
"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": {
"@phosphor-icons/react": "^2.1.7",
"@remix-run/node": "^1.7.4",
"@remix-run/react": "^1.7.4",
"@remix-run/vercel": "^1.7.4",
"@vercel/node": "^2.4.4",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-tooltip": "^5.27.1"
},
"devDependencies": {
"@remix-run/dev": "^1.7.4",
"@remix-run/eslint-config": "^1.7.4",
"@remix-run/serve": "^1.7.4",
"@types/react": "^18.0.15",
"@types/react-dom": "^18.0.6",
"autoprefixer": "^10.4.14",
"concurrently": "^8.0.1",
"eslint": "^8.23.1",
"postcss": "^8.4.23",
"tailwindcss": "^3.3.2",
"typescript": "^4.7.4"
}
}