-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.22 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
{
"private": true,
"sideEffects": false,
"scripts": {
"dev": "npx concurrently -p \"[{name}]\" -n \"remix,tailwind\" -c \"red.bold,cyan.bold\" \"npm:dev:remix\" \"npm:dev:tailwind\"",
"dev:remix": "remix dev",
"dev:tailwind": "tailwindcss -o app/styles/tailwind.css --watch",
"build": "npm run build:remix && npm run build:tailwind",
"build:tailwind": "tailwindcss -o ./app/styles.css",
"build:remix": "NODE_ENV=development remix build",
"start": "remix-serve build",
"format": "prettier --write ."
},
"dependencies": {
"@heroicons/react": "^1.0.6",
"@remix-run/node": "^1.6.0",
"@remix-run/react": "^1.6.0",
"@remix-run/serve": "^1.6.0",
"react": "^18.2.0",
"react-cookie": "^4.1.1",
"react-dom": "^18.2.0",
"remix": "^1.6.0",
"zod": "^3.17.3"
},
"devDependencies": {
"@headlessui/react": "^1.6.4",
"@remix-run/dev": "^1.6.0",
"@remix-run/eslint-config": "^1.6.0",
"@types/jsonwebtoken": "^8.5.8",
"@types/react": "^18.0.14",
"@types/react-dom": "^18.0.5",
"concurrently": "^7.2.2",
"eslint": "^8.15.0",
"jsonwebtoken": "^8.5.1",
"tailwindcss": "^3.1.3",
"typescript": "^4.6.4"
},
"engines": {
"node": ">=14"
}
}