-
-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpackage.json
138 lines (138 loc) · 4.23 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
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
{
"name": "polskifrontend",
"version": "5.0.2",
"np": {
"branch": "main",
"releaseDraft": true
},
"repository": {
"url": "https://github.com/typeofweb/polskifrontend"
},
"scripts": {
"dev": "concurrently --kill-others-on-fail --names api,_db,www --prefix-colors yellow,green,blue.inverse 'pnpm dev:start:api' 'pnpm dev:start:www'",
"dev:start:api": "wait-on tcp:54322 --interval 5000 && pnpm db:migrate:up",
"dev:start:db": "supabase start",
"dev:stop:db": "supabase stop",
"dev:start:www": "next dev",
"db:migrate:up": "prisma migrate deploy --preview-feature && prisma generate",
"build": "next build",
"start": "next start",
"lint": "next lint --fix",
"test": "jest --detectOpenHandles --forceExit --passWithNoTests",
"test:ci": "jest --passWithNoTests",
"tsc": "tsc --noEmit",
"studio": "prisma studio",
"prepare": "husky install",
"postinstall": "prisma generate"
},
"prisma": {
"schema": "./api-helpers/prisma/schema.prisma"
},
"author": "Michał Miszczyszyn - Type of Web <[email protected]> (https://typeofweb.com/)",
"contributors": [
"Bartłomiej Dybowski <[email protected]> (https://www.nafrontendzie.pl/)",
"Michał Miszczyszyn - Type of Web <[email protected]> (https://typeofweb.com/)"
],
"license": "AGPL-3.0-only",
"private": true,
"dependencies": {
"@hapi/boom": "10.0.0",
"@hcaptcha/react-hcaptcha": "1.4.4",
"@next/font": "13.1.1",
"@prisma/client": "4.9.0",
"@supabase/auth-helpers-nextjs": "0.5.3",
"@supabase/auth-helpers-react": "0.3.1",
"@supabase/auth-ui-react": "0.2.6",
"@supabase/supabase-js": "2.4.0",
"@tailwindcss/line-clamp": "0.4.2",
"@vercel/analytics": "0.1.8",
"algoliasearch": "4.14.3",
"cheerio": "1.0.0-rc.12",
"cloudinary": "1.33.0",
"clsx": "1.2.1",
"feed": "4.2.2",
"feedparser": "2.2.10",
"googleapis": "110.0.0",
"hcaptcha": "0.1.1",
"html-entities": "2.3.3",
"iconv-lite": "0.6.3",
"mailgun-js": "0.22.0",
"ms": "2.1.3",
"next": "13.1.2",
"pino": "8.8.0",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-instantsearch-dom": "6.38.3",
"rxjs": "7.8.0",
"slugify": "1.6.5",
"xss": "1.0.14",
"yup": "1.0.0-beta.8"
},
"devDependencies": {
"@tailwindcss/typography": "0.5.9",
"@testing-library/dom": "8.20.0",
"@testing-library/jest-dom": "5.16.5",
"@testing-library/react": "13.4.0",
"@testing-library/user-event": "14.4.3",
"@typeofweb/eslint-plugin": "0.3.0",
"@types/cheerio": "0.22.31",
"@types/feedparser": "2.2.5",
"@types/gtag.js": "0.0.12",
"@types/hcaptcha__react-hcaptcha": "0.1.5",
"@types/jest": "29.2.6",
"@types/mailgun-js": "0.22.13",
"@types/ms": "0.7.31",
"@types/node": "18.11.18",
"@types/react": "18.0.27",
"@types/react-dom": "18.0.10",
"@types/react-instantsearch-dom": "6.12.3",
"@typescript-eslint/eslint-plugin": "5.48.2",
"@typescript-eslint/parser": "5.48.2",
"all-contributors-cli": "6.24.0",
"autoprefixer": "10.4.13",
"concurrently": "7.6.0",
"critters": "0.0.16",
"cross-env": "7.0.3",
"dotenv": "16.0.3",
"eslint": "8.32.0",
"eslint-config-next": "13.1.2",
"eslint-plugin-css-modules": "2.11.0",
"eslint-plugin-cypress": "2.12.1",
"eslint-plugin-jsx-a11y": "6.7.1",
"eslint-plugin-react": "7.32.1",
"eslint-plugin-react-hooks": "4.6.0",
"husky": "8.0.3",
"jest": "29.3.1",
"jest-environment-jsdom": "29.3.1",
"lint-staged": "13.1.0",
"msw": "0.49.3",
"pino-pretty": "9.1.1",
"postcss": "8.4.20",
"prettier": "2.8.3",
"prettier-plugin-tailwindcss": "0.2.1",
"prisma": "4.9.0",
"rimraf": "4.1.1",
"sass": "1.57.1",
"supabase": "1.34.2",
"tailwindcss": "3.2.4",
"ts-node": "10.9.1",
"typescript": "4.9.4",
"typescript-plugin-css-modules": "4.1.1",
"wait-on": "7.0.1"
},
"engines": {
"npm": ">=7.0.0",
"pnpm": ">=7.11.0",
"node": ">=18.0.0 <19"
},
"packageManager": "[email protected]",
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"eslint --resolve-plugins-relative-to . --fix",
"pnpm prettier --write"
],
"*.{json,md,yaml,yml,scss,css}": [
"pnpm prettier --write"
]
}
}