-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
42 lines (42 loc) · 1.16 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
{
"private": true,
"name": "remix-sort-filter-search-table",
"description": "",
"license": "",
"scripts": {
"build": "npm run build:css && remix build",
"dev": "dotenv remix dev",
"watch:css": "tailwindcss --output ./app/styles/tailwind.css --config ./tailwind.config.js --watch",
"build:css": "tailwindcss --output ./app/styles/tailwind.css --config ./tailwind.config.js --minify",
"postinstall": "remix setup node"
},
"dependencies": {
"@headlessui/react": "^1.4.2",
"@heroicons/react": "^1.0.5",
"@prisma/client": "^3.7.0",
"@remix-run/react": "^1.1.1",
"@remix-run/serve": "^1.1.1",
"clsx": "^1.1.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"remix": "^1.1.1",
"zod": "^3.11.6"
},
"devDependencies": {
"@remix-run/dev": "^1.1.1",
"@tailwindcss/forms": "^0.4.0",
"@tailwindcss/typography": "^0.5.0",
"@types/react": "^17.0.24",
"@types/react-dom": "^17.0.9",
"dotenv-cli": "^4.1.1",
"prettier": "^2.5.1",
"prisma": "^3.7.0",
"tailwindcss": "^3.0.0",
"ts-node": "^10.4.0",
"typescript": "^4.1.2"
},
"engines": {
"node": ">=14"
},
"sideEffects": false
}