-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 1.06 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
{
"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": "remix dev",
"dev:css": "tailwindcss -w -i ./styles/app.css -o app/styles/app.css",
"start": "cross-env NODE_ENV=production netlify dev",
"typecheck": "tsc"
},
"dependencies": {
"@netlify/functions": "^1.3.0",
"@remix-run/netlify": "^1.12.0",
"@remix-run/node": "^1.12.0",
"@remix-run/react": "^1.12.0",
"bcryptjs": "^2.4.3",
"isbot": "^3.6.5",
"react": "^18.2.0",
"cross-env": "^7.0.3",
"react-dom": "^18.2.0",
"react-grid-system": "^8.1.8",
"react-icons": "^4.7.1"
},
"devDependencies": {
"@prisma/client": "^4.10.0",
"@remix-run/dev": "^1.12.0",
"@remix-run/eslint-config": "^1.12.0",
"@types/react": "^18.0.25",
"@types/react-dom": "^18.0.8",
"concurrently": "^7.6.0",
"eslint": "^8.27.0",
"prisma": "^4.10.0",
"tailwindcss": "^3.2.4"
},
"engines": {
"node": ">=14"
}
}