-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.29 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
{
"name": "marked",
"private": true,
"sideEffects": false,
"scripts": {
"build": "run-s build:*",
"build:css": "tailwindcss -m -i ./styles/app.css -o app/styles/app.css",
"build:app": "remix build",
"dev": "run-p dev:*",
"dev:app": "PORT=3303 remix dev",
"dev:css": "tailwindcss -i ./styles/app.css -o app/styles/app.css --watch"
},
"dependencies": {
"@prisma/client": "^4.6.1",
"@remix-run/node": "^1.7.1",
"@remix-run/react": "^1.7.1",
"@remix-run/vercel": "^1.7.1",
"@tailwindcss/line-clamp": "^0.4.2",
"@vercel/node": "^2.4.4",
"daisyui": "^2.38.1",
"msw": "^0.48.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"remix-auth": "^3.3.0",
"remix-auth-google": "^1.1.0",
"zod": "^3.19.1"
},
"devDependencies": {
"@remix-run/dev": "^1.7.1",
"@remix-run/eslint-config": "^1.7.1",
"@remix-run/serve": "^1.7.1",
"@types/react": "^18.0.15",
"@types/react-dom": "^18.0.6",
"autoprefixer": "^10.4.13",
"concurrently": "^7.5.0",
"eslint": "^8.23.1",
"npm-run-all": "^4.1.5",
"postcss": "^8.4.18",
"prettier-plugin-prisma": "^4.4.0",
"prisma": "^4.6.1",
"remix-flat-routes": "^0.4.4",
"tailwindcss": "^3.1.8",
"typescript": "^4.7.4"
},
"engines": {
"node": ">=14"
}
}