-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
69 lines (69 loc) · 1.92 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
{
"name": "property-searcher",
"version": "0.1.0",
"license": "MIT",
"scripts": {
"prepare": "corepack enable && yarn",
"postinstall": "prisma generate",
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"test": "vitest",
"analyze": "ANALYZE=true next build",
"coverage": "vitest run --coverage",
"prettier": "prettier --check .",
"prettier:write": "prettier --write ."
},
"dependencies": {
"@geist-ui/core": "^2.3.8",
"@geist-ui/icons": "^1.0.2",
"@next/bundle-analyzer": "^13.5.6",
"@prisma/client": "^5.5.2",
"@tanstack/react-query": "^4.36.1",
"@tanstack/react-query-devtools": "^4.36.1",
"@upstash/redis": "^1.24.0",
"@vercel/og": "^0.5.20",
"date-fns": "^2.30.0",
"i18next": "^22.5.1",
"jsdom": "^22.1.0",
"next": "^13.5.6",
"next-i18next": "^13.3.0",
"ramda": "^0.29.1",
"react": "^18.2.0",
"react-content-loader": "^6.2.1",
"react-dom": "^18.2.0",
"react-i18next": "^12.3.1",
"zustand": "^4.4.4"
},
"devDependencies": {
"@testing-library/jest-dom": "^6.1.4",
"@testing-library/react": "^14.0.0",
"@types/jsdom": "^21.1.4",
"@types/node": "^18.18.7",
"@types/ramda": "^0.29.7",
"@types/react": "18.2.33",
"@typescript-eslint/parser": "6.9.0",
"@vitejs/plugin-react": "4.1.0",
"@vitest/coverage-v8": "0.34.6",
"c8": "^8.0.1",
"eslint": "^8.52.0",
"eslint-config-next": "^13.5.6",
"eslint-import-resolver-typescript": "3.6.1",
"eslint-plugin-import": "2.29.0",
"eslint-plugin-jsx-a11y": "6.7.1",
"eslint-plugin-react": "7.33.2",
"eslint-plugin-react-hooks": "4.6.0",
"prettier": "^3.0.3",
"prisma": "^5.5.2",
"typescript": "^5.2.2",
"vitest": "0.34.6"
},
"prettier": {
"trailingComma": "es5",
"tabWidth": 2,
"semi": false,
"singleQuote": true
},
"packageManager": "yarn@3.6.3"
}