-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
98 lines (98 loc) · 2.7 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
{
"name": "loonify",
"version": "0.0.9",
"scripts": {
"dev": "blitz dev",
"build": "blitz prisma generate && blitz build",
"start": "blitz start",
"studio": "blitz prisma studio",
"lint": "eslint --ignore-path .gitignore --ext .js,.ts,.tsx .",
"test": "jest",
"test:watch": "jest --watch",
"generate": "blitz prisma generate",
"migrate": "blitz prisma migrate deploy --preview-feature"
},
"prisma": {
"schema": "db/schema.prisma"
},
"prettier": {
"semi": false,
"printWidth": 100
},
"husky": {
"hooks": {
"pre-commit": "lint-staged && pretty-quick --staged",
"pre-push": "tsc && npm run lint && npm run test || true"
}
},
"lint-staged": {
"*.{js,ts,tsx}": [
"eslint --fix"
]
},
"dependencies": {
"@brainhubeu/react-carousel": "1.19.26",
"@chakra-ui/icons": "1.0.7",
"@chakra-ui/react": "1.5.2",
"@emotion/react": "^11",
"@emotion/styled": "^11",
"@fontsource/rubik": "4.2.2",
"@hookform/resolvers": "1.3.6",
"@prisma/client": "4.1.0",
"blitz": "0.33.0",
"busboy": "0.3.1",
"chrome-aws-lambda": "9.1.0",
"cloudinary": "1.25.1",
"framer-motion": "^4",
"leaflet": "1.7.1",
"leaflet.markercluster": "1.5.0",
"next-pwa": "5.4.0",
"next-seo": "4.24.0",
"nodemailer": "6.5.0",
"prisma": "4.1.0",
"puppeteer-core": "9.1.1",
"qrcode.react": "1.0.1",
"react": "0.0.0-experimental-3310209d0",
"react-beautiful-dnd": "13.1.0",
"react-dom": "0.0.0-experimental-3310209d0",
"react-error-boundary": "3.1.1",
"react-hook-form": "6.15.5",
"react-icons": "4.2.0",
"react-images-uploading": "3.1.2",
"react-leaflet": "3.1.0",
"react-leaflet-markercluster": "3.0.0-rc1",
"react-use": "17.2.1",
"sass": "1.32.8",
"swiper": "6.5.6",
"typescript": "~4.1",
"zod": "1.11.13",
"zustand": "3.3.3"
},
"devDependencies": {
"@types/brainhubeu__react-carousel": "2.0.2",
"@types/busboy": "0.2.3",
"@types/faker": "5.5.1",
"@types/leaflet": "1.7.0",
"@types/leaflet-draw": "1.0.3",
"@types/nodemailer": "6.4.1",
"@types/preview-email": "2.0.0",
"@types/qrcode": "1.4.0",
"@types/qrcode.react": "1.0.1",
"@types/react": "17.0.3",
"@types/react-beautiful-dnd": "13.0.0",
"@types/react-leaflet": "2.8.1",
"@types/react-leaflet-markercluster": "2.0.0",
"@types/react-map-gl": "5.2.9",
"@types/swiper": "5.4.2",
"eslint": "7.22.0",
"faker": "5.5.3",
"husky": "4.3.8",
"lint-staged": "10.5.4",
"prettier": "2.2.1",
"prettier-plugin-prisma": "0.6.0",
"pretty-quick": "3.1.0",
"preview-email": "3.0.4",
"puppeteer": "10.4.0"
},
"private": true
}