This repository has been archived by the owner on Oct 18, 2024. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 26
/
package.json
63 lines (63 loc) · 1.76 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
{
"name": "healthcheck",
"version": "0.37.4",
"private": true,
"engines": {
"node": ">=21"
},
"scripts": {
"dev": "next dev",
"dev-wsl": "HOST=$(hostname -I | awk '{print $1}') && next dev --hostname ${HOST}",
"build": "next build",
"start": "next start",
"lint": "set TRUNK_TELEMETRY=off && trunk check",
"fmt": "set TRUNK_TELEMETRY=off && trunk fmt",
"lint-old": "next lint",
"test": "npx playwright test",
"prepare": "husky",
"postinstall": "shx cp -n ./.env.example ./.env",
"format:write": "prettier . --write",
"format:check": "prettier . --check",
"db:migrate:dev": "npx prisma migrate dev",
"db:migrate:prod": "prisma migrate deploy"
},
"dependencies": {
"@auth/prisma-adapter": "^2.4.2",
"@headlessui/react": "^2.1.5",
"@heroicons/react": "^2.1.5",
"@octokit/graphql": "^8.1.1",
"@octokit/rest": "^21.0.0",
"@prisma/client": "^5.19.0",
"@tailwindcss/aspect-ratio": "^0.4.2",
"@tailwindcss/forms": "^0.5.7",
"@trunkio/launcher": "^1.3.1",
"apexcharts": "^3.53.0",
"badge-maker": "^4.0.0",
"date-fns": "^3.6.0",
"flagsmith": "^4.0.3",
"flagsmith-nodejs": "^3.3.3",
"flowbite-react": "^0.10.1",
"next": "14.2.4",
"next-auth": "^4.24.7",
"react": "^18",
"react-apexcharts": "^1.4.1",
"react-dom": "^18",
"zod": "^3.23.8"
},
"devDependencies": {
"@playwright/test": "^1.45.1",
"@types/node": "^20.16.5",
"cross-env": "^7.0.3",
"eslint": "^8",
"eslint-config-next": "14.2.4",
"eslint-config-prettier": "^9.1.0",
"flagsmith-cli": "^0.2.0",
"husky": "^9.1.5",
"msw": "^2.3.4",
"postcss": "^8",
"prettier": "3.3.3",
"prisma": "^5.16.2",
"shx": "^0.3.4",
"tailwindcss": "^3.4.1"
}
}