-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.09 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
{
"private": true,
"sideEffects": false,
"type": "module",
"scripts": {
"build": "remix build",
"dev": "remix dev --manual",
"start": "remix-serve ./build/index.js",
"typecheck": "tsc",
"postinstall": "prisma generate"
},
"dependencies": {
"@prisma/client": "^4.14.1",
"@remix-run/css-bundle": "1.19.3",
"@remix-run/node": "1.19.3",
"@remix-run/react": "1.19.3",
"bcryptjs": "^2.4.3",
"cross-env": "^7.0.3",
"isbot": "^3.6.8",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-icons": "^4.9.0",
"remix-auth": "^3.4.0",
"remix-auth-form": "^1.3.0",
"remix-auth-google": "^1.2.0"
},
"devDependencies": {
"@remix-run/dev": "1.19.3",
"@remix-run/eslint-config": "1.19.3",
"@remix-run/serve": "1.19.3",
"@types/bcryptjs": "^2.4.2",
"@types/react": "^18.0.35",
"@types/react-dom": "^18.0.11",
"eslint": "^8.38.0",
"eslint-config-prettier": "^8.8.0",
"prettier": "^2.8.8",
"prisma": "^4.14.1",
"ts-node": "^10.9.1",
"typescript": "^5.0.4"
},
"engines": {
"node": ">=18.0.0"
}
}