-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 2.01 KB
/
Copy pathpackage.json
File metadata and controls
79 lines (79 loc) · 2.01 KB
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
{
"name": "postreview-app",
"version": "1.0.0",
"engines": {
"node": "16.14.0"
},
"scripts": {
"start:production": "blitz start --port $PORT",
"dev": "blitz dev",
"build": "blitz build",
"start": "blitz start",
"studio": "blitz prisma studio",
"lint": "eslint --ignore-path .gitignore --ext .js,.ts,.tsx .",
"test": "jest",
"test:watch": "jest --watch",
"prepare": "husky install"
},
"prisma": {
"schema": "db/schema.prisma"
},
"prettier": {
"semi": false,
"printWidth": 100
},
"lint-staged": {
"*.{js,ts,tsx}": [
"eslint --fix"
]
},
"dependencies": {
"@algolia/autocomplete-js": "1.5.3",
"@algolia/autocomplete-theme-classic": "1.5.3",
"@emotion/react": "11.4.1",
"@emotion/styled": "11.3.0",
"@headlessui/react": "1.5.0",
"@mui/icons-material": "5.0.4",
"@mui/material": "5.0.1",
"@prisma/client": "3.6.0",
"@uploadcare/react-widget": "2.1.5",
"algoliasearch": "4.12.2",
"autoprefixer": "10.3.4",
"blitz": "0.45.4",
"final-form": "4.20.2",
"formik": "2.2.9",
"passport-google-oauth20": "2.0.0",
"postcss": "8.3.6",
"postmark": "3.0.1",
"prisma": "3.12.0",
"react": "18.0.0-alpha-67222f044-20210915",
"react-cookie-consent": "8.0.1",
"react-dom": "18.0.0-alpha-67222f044-20210915",
"react-final-form": "6.5.3",
"react-icons": "4.4.0",
"react-instantsearch-hooks-web": "6.24.2",
"ts-node": "10.4.0",
"tslib": "2.3.1",
"typescript": "4.3.5",
"zod": "3.8.2"
},
"devDependencies": {
"@iconify/react": "3.2.1",
"@types/node": "17.0.10",
"@types/preview-email": "2.0.1",
"@types/react": "17.0.20",
"eslint": "7.32.0",
"husky": "6.0.0",
"lint-staged": "10.5.4",
"prettier": "2.4.0",
"prettier-plugin-prisma": "0.15.0",
"prettier-plugin-tailwindcss": "0.1.13",
"pretty-quick": "3.1.1",
"preview-email": "3.0.5",
"tailwindcss": "3.0.13"
},
"private": true,
"cacheDirectories": [
".next/cache"
]
}