-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
114 lines (114 loc) · 3.4 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
{
"name": "next-mikro-orm-trpc-template",
"description": "Yet another project template",
"author": "Nick K. <[email protected]>",
"license": "MIT",
"repository": "octet-stream/next-mikro-orm-trpc-template",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"demo": "./quick-demo.sh",
"lint": "next lint",
"lint:types": "tsc --noEmit",
"test:compose-up": "docker compose -f docker-compose.test.yml up --wait --remove-orphans",
"test:compose-down": "docker compose -f docker-compose.test.yml down",
"test": "pnpm test:compose-up && (ava ; pnpm test:compose-down)",
"coverage": "pnpm test:compose-up && (c8 ava ; pnpm test:compose-down)",
"report:html": "pnpm test:compose-up && ((c8 ava && c8 report --reporter=html) ; pnpm test:compose-down)",
"ci": "c8 ava && c8 report --reporter=json"
},
"mikro-orm": {
"useTsNode": true,
"configPaths": [
"./src/server/lib/db/cli.ts"
]
},
"pnpm": {
"updateConfig": {
"ignoreDependencies": [
"nanoid",
"is-absolute-url",
"superjson"
]
}
},
"devDependencies": {
"@headlessui/tailwindcss": "0.2.0",
"@mikro-orm/cli": "6.1.6",
"@mikro-orm/migrations": "6.1.6",
"@mikro-orm/seeder": "6.1.6",
"@next/env": "14.1.0",
"@octetstream/eslint-config": "8.1.0",
"@tailwindcss/typography": "0.5.10",
"@types/lodash": "4.14.202",
"@types/node": "20.11.23",
"@types/react": "18.2.61",
"@types/react-dom": "18.2.19",
"@types/sinon": "17.0.3",
"@types/validator": "13.11.9",
"@typescript-eslint/eslint-plugin": "7.1.0",
"@typescript-eslint/parser": "7.1.0",
"autoprefixer": "10.4.17",
"ava": "6.1.2",
"c8": "9.1.0",
"eslint": "8.57.0",
"eslint-config-airbnb": "19.0.4",
"eslint-config-airbnb-typescript": "17.1.0",
"eslint-config-next": "14.1.0",
"eslint-import-resolver-typescript": "3.6.1",
"eslint-plugin-import": "2.29.1",
"eslint-plugin-jsx-a11y": "6.8.0",
"eslint-plugin-react": "7.33.2",
"eslint-plugin-react-hooks": "4.6.0",
"global-jsdom": "24.0.0",
"jsdom": "24.0.0",
"postcss": "8.4.35",
"sinon": "17.0.1",
"tailwindcss": "3.4.1",
"ts-node": "10.9.2",
"tsconfig-paths": "4.2.0",
"typescript": "5.3.3"
},
"dependencies": {
"@headlessui/react": "1.7.18",
"@hookform/resolvers": "3.3.4",
"@mikro-orm/core": "6.1.6",
"@mikro-orm/mysql": "6.1.6",
"@trpc/client": "10.45.1",
"@trpc/server": "10.45.1",
"clsx": "2.1.0",
"date-fns": "3.3.1",
"is-absolute-url": "3.0.3",
"lodash": "4.17.21",
"lucide-react": "0.343.0",
"mysql2": "3.9.2",
"nanoid": "3.3.4",
"next": "14.1.0",
"next-auth": "4.24.6",
"next-connect": "1.0.0",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-hook-form": "7.50.1",
"react-hot-toast": "2.4.1",
"react-query": "3.39.3",
"react-select": "5.8.0",
"react-textarea-autosize": "8.5.3",
"react-use": "17.5.0",
"react-use-event-hook": "0.9.6",
"reflect-metadata": "0.2.1",
"rehype-parse": "9.0.0",
"rehype-react": "8.0.0",
"rehype-sanitize": "6.0.0",
"remark-parse": "11.0.0",
"remark-rehype": "11.1.0",
"spinners-react": "1.0.7",
"superjson": "1.13.3",
"type-fest": "4.10.3",
"unified": "11.0.4",
"validator": "13.11.0",
"valtio": "1.13.1",
"zod": "3.22.4"
}
}