-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.38 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
{
"private": true,
"name": "remix-app-template",
"description": "",
"license": "",
"scripts": {
"build": "npm run tailwind-prod && npm run build:remix",
"build:remix": "remix build",
"dev": "concurrently \"remix dev\" \"npm run dev:css\"",
"dev:remix": "remix dev",
"dev:css": "npm run tailwind-dev",
"postinstall": "remix setup node",
"start": "npm run tailwind-prod && npm run start:remix",
"start:remix": "remix-serve build",
"tailwind-dev": "tailwindcss --output ./app/styles/tailwind.css --config ./config/tailwind.js --watch",
"tailwind-prod": "tailwindcss --output ./app/styles/tailwind.css --config ./config/tailwind.js --minify",
"prisma": "npx prisma generate"
},
"dependencies": {
"@prisma/client": "^3.6.0",
"@remix-run/react": "^1.1.0",
"@remix-run/serve": "^1.1.0",
"@tailwindcss/forms": "^0.4.0",
"dotenv": "^10.0.0",
"isomorphic-dompurify": "^0.17.0",
"passport": "^0.5.2",
"passport-local": "^1.0.0",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"remix": "^1.1.0",
"remix-auth": "^2.5.1",
"tailwindcss": "^3.0.7",
"uuid": "^8.3.2"
},
"devDependencies": {
"@remix-run/dev": "^1.1.0",
"@types/react": "^17.0.37",
"@types/react-dom": "^17.0.11",
"concurrently": "^6.5.0",
"typescript": "^4.5.4"
},
"engines": {
"node": ">=14"
},
"sideEffects": false
}