-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
120 lines (120 loc) · 3.97 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
{
"name": "courier-hacks-fazzamiarso",
"version": "0.1.0",
"license": "MIT",
"author": "Fazza Razaq Amiarso <[email protected]> (https://fazzaamiarso.me/)",
"scripts": {
"build": "next build",
"build:ci": "cross-env APP_ENV=test next build",
"dev": "next dev",
"dev:test": "cross-env APP_ENV=test NODE_ENV=test next dev -p 8080",
"postinstall": "prisma generate",
"lint": "next lint ./src",
"typecheck": "tsc --noEmit",
"start": "next start",
"start:ci": "next start -p 8080",
"prepare": "husky install",
"db:push": "prisma db push",
"db:seed": "prisma migrate reset --skip-generate --skip-seed && prisma db push && prisma db seed",
"db:test-push": "dotenv -e .env.test -- prisma db push",
"db:test-reset": "dotenv -e .env.test -- prisma migrate reset --force --skip-generate --skip-seed",
"db:test-seed": "dotenv -e .env.test -- prisma db seed",
"db:test-run": "run-s db:test-reset db:test-push db:test-seed",
"db:studio": "prisma studio",
"cy:open": "cypress open",
"cy:run": "cypress run",
"cy:test": "start-server-and-test dev:test http://localhost:8080 cy:open",
"cy:test-run": "start-server-and-test dev:test http://localhost:8080 cy:run",
"test:unit": "vitest run",
"test:unit-watch": "vitest"
},
"dependencies": {
"@headlessui/react": "^1.7.17",
"@heroicons/react": "^2.0.18",
"@hookform/error-message": "^2.0.1",
"@next-auth/prisma-adapter": "^1.0.7",
"@prisma/client": "^5.3.0",
"@tanstack/match-sorter-utils": "^8.8.4",
"@tanstack/react-query": "^4.35.3",
"@tanstack/react-table": "^8.9.9",
"@tanstack/react-virtual": "3.0.0-beta.18",
"@tanstack/table-core": "^8.9.9",
"@trpc/client": "^10.38.3",
"@trpc/next": "^10.38.3",
"@trpc/react-query": "^10.38.3",
"@trpc/server": "^10.38.3",
"@trycourier/courier": "^4.9.0",
"chart.js": "^3.9.1",
"clsx": "^2.0.0",
"dayjs": "^1.11.9",
"dotenv-cli": "^7.3.0",
"html-to-image": "^1.11.11",
"jotai": "^2.4.2",
"jsdom": "^22.1.0",
"jspdf": "^2.5.1",
"next": "^13.4.19",
"next-auth": "^4.23.1",
"next-seo": "^6.1.0",
"nodemailer": "^6.9.5",
"react": "^18.2.0",
"react-chartjs-2": "^4.3.1",
"react-csv": "^2.2.2",
"react-dom": "^18.2.0",
"react-hook-form": "^7.46.1",
"react-hot-toast": "^2.4.1",
"react-intersection-observer": "^9.5.2",
"sharp": "^0.32.5",
"superjson": "^1.13.1",
"tiny-invariant": "^1.3.1",
"zod": "^3.22.2"
},
"devDependencies": {
"@commitlint/cli": "^17.7.1",
"@commitlint/config-conventional": "^17.7.0",
"@faker-js/faker": "^8.0.2",
"@playwright/test": "^1.38.0",
"@tailwindcss/forms": "^0.5.6",
"@testing-library/cypress": "^10.0.1",
"@testing-library/react": "^14.0.0",
"@types/node": "^18.17.15",
"@types/react": "^18.2.21",
"@types/react-csv": "^1.1.4",
"@types/react-dom": "^18.2.7",
"@types/testing-library__cypress": "^5.0.10",
"@typescript-eslint/eslint-plugin": "^6.7.0",
"@typescript-eslint/parser": "^6.7.0",
"@vitejs/plugin-react": "^4.0.4",
"autoprefixer": "^10.4.15",
"cross-env": "^7.0.3",
"cypress": "^13.2.0",
"eslint": "^8.49.0",
"eslint-config-next": "^13.4.19",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-cypress": "^2.14.0",
"eslint-plugin-jsx-a11y": "^6.7.1",
"husky": "^8.0.3",
"lint-staged": "^13.3.0",
"npm-run-all": "^4.1.5",
"postcss": "^8.4.29",
"prettier": "^3.0.3",
"prettier-plugin-tailwindcss": "^0.5.4",
"prisma": "^5.3.0",
"start-server-and-test": "^2.0.0",
"tailwindcss": "^3.3.3",
"ts-node": "^10.9.1",
"typescript": "^5.2.2",
"vite-tsconfig-paths": "^4.2.1",
"vitest": "^0.34.4"
},
"ct3aMetadata": {
"initVersion": "6.1.1"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"prisma": {
"seed": "ts-node --transpile-only --compiler-options {\"module\":\"CommonJS\"} prisma/seed.ts"
}
}