-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
102 lines (102 loc) · 3.11 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
{
"name": "quick-note",
"version": "0.1.0",
"private": true,
"license": "MIT",
"author": "Kacper Polak <[email protected]>",
"scripts": {
"prepare": "husky install",
"postinstall": "node ./scripts/tinymce.js && prisma generate",
"dev": "concurrently --kill-others-on-fail \"pnpm database:dev:start\" \"wait-on tcp:5432 && pnpm prisma:migrate:dev && pnpm next:dev\"",
"test": "vitest",
"next:dev": "next dev",
"next:build": "next build",
"next:start": "next start",
"next:lint": "next lint",
"next:lint:fix": "next lint --fix",
"prisma:migrate:dev": "dotenv -e .env.development.local -- prisma migrate dev",
"prisma:studio:dev": "dotenv -e .env.development.local -- prisma studio",
"database:dev:start": "docker compose up",
"storybook:dev": "storybook dev -p 6006",
"storybook:build": "storybook build"
},
"dependencies": {
"@headlessui/react": "1.7.14",
"@hookform/resolvers": "3.1.0",
"@next-auth/prisma-adapter": "1.0.6",
"@prisma/client": "4.13.0",
"@t3-oss/env-nextjs": "0.3.1",
"@tanstack/react-query": "4.29.3",
"@tanstack/react-query-devtools": "4.29.3",
"@tinymce/tinymce-react": "4.3.0",
"@total-typescript/ts-reset": "0.4.2",
"@trpc/client": "10.21.1",
"@trpc/react-query": "10.21.1",
"@trpc/server": "10.21.1",
"bcrypt": "5.1.0",
"client-only": "0.0.1",
"email-validator": "2.0.4",
"fs-extra": "11.1.1",
"next": "13.4.4",
"next-auth": "4.22.1",
"next-pwa": "5.6.0",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-hook-form": "7.43.9",
"react-hot-toast": "2.4.0",
"react-icons": "4.8.0",
"server-only": "0.0.1",
"superjson": "1.12.3",
"tailwind-merge": "1.12.0",
"tinymce": "6.4.2",
"use-debounce": "9.0.4",
"zod": "3.21.4"
},
"devDependencies": {
"@commitlint/cli": "17.6.1",
"@commitlint/config-conventional": "17.6.1",
"@storybook/addon-essentials": "^7.0.7",
"@storybook/addon-interactions": "^7.0.7",
"@storybook/addon-links": "^7.0.7",
"@storybook/blocks": "^7.0.7",
"@storybook/nextjs": "^7.0.7",
"@storybook/react": "^7.0.7",
"@storybook/testing-library": "^0.0.14-next.2",
"@svgr/webpack": "7.0.0",
"@types/bcrypt": "5.0.0",
"@types/node": "18.15.13",
"@types/react": "18.2.7",
"@types/react-dom": "18.2.4",
"@typescript-eslint/eslint-plugin": "5.59.0",
"@typescript-eslint/parser": "5.59.0",
"autoprefixer": "10.4.14",
"concurrently": "8.0.1",
"dotenv-cli": "7.2.1",
"eslint": "8.39.0",
"eslint-config-next": "13.3.1",
"eslint-config-prettier": "8.8.0",
"eslint-import-resolver-typescript": "3.5.5",
"eslint-plugin-import": "2.27.5",
"eslint-plugin-prettier": "4.2.1",
"eslint-plugin-simple-import-sort": "10.0.0",
"eslint-plugin-storybook": "0.6.11",
"husky": "8.0.3",
"lint-staged": "13.2.1",
"postcss": "8.4.23",
"prettier": "2.8.7",
"prettier-plugin-tailwindcss": "0.2.7",
"prisma": "4.14.1",
"storybook": "^7.0.7",
"tailwind-scrollbar": "3.0.0",
"tailwindcss": "3.3.1",
"tsconfig-paths-webpack-plugin": "4.0.1",
"typescript": "5.0.4",
"vitest": "0.30.1",
"wait-on": "7.0.1"
},
"engines": {
"node": ">=18.0.0 <19",
"pnpm": ">=8"
},
"packageManager": "[email protected]"
}