-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1.02 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
{
"private": true,
"name": "remix-app-template",
"description": "",
"license": "",
"scripts": {
"build": "remix build",
"dev": "remix dev",
"start": "remix-serve build",
"format": "prettier --check .",
"format:fix": "prettier --write ."
},
"prisma": {
"seed": "node --require esbuild-register prisma/seed.ts"
},
"dependencies": {
"@js-temporal/polyfill": "^0.4.1",
"@prisma/client": "^3.6.0",
"@remix-run/node": "^1.19.3",
"@remix-run/react": "^1.19.3",
"@remix-run/serve": "^1.19.3",
"bcrypt": "^5.0.1",
"cross-env": "^7.0.3",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"zod": "^3.11.6",
"zod-form-data": "^1.2.1"
},
"devDependencies": {
"@remix-run/dev": "^1.19.3",
"@types/bcrypt": "^5.0.0",
"@types/react": "^17.0.24",
"@types/react-dom": "^17.0.9",
"esbuild-register": "^3.2.0",
"prettier": "^2.7.1",
"prisma": "^3.6.0",
"typescript": "^4.1.2"
},
"engines": {
"node": ">=14"
},
"sideEffects": false
}