-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
59 lines (59 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
{
"name": "open-link",
"version": "0.1.0",
"private": true,
"description": "",
"author": "@danielcgilibert",
"scripts": {
"dev": "next dev",
"build": "next build",
"vercel-build": "prisma generate && next build",
"test": "pnpm exec playwright test",
"start": "next start",
"lint": "next lint",
"prettier-check": "prettier --plugin-search-dir . --check . && eslint .",
"prettier-format": "prettier --plugin-search-dir . --write .",
"dbpush": "dotenv -e .env.development -- npx prisma db push",
"studio": "dotenv -e .env.development -- npx prisma studio"
},
"dependencies": {
"@headlessui/react": "^1.7.14",
"@next-auth/prisma-adapter": "^1.0.6",
"@prisma/client": "^4.14.0",
"@react-spring/web": "^9.7.2",
"@tanstack/react-query": "^4.29.7",
"@tanstack/react-query-devtools": "^4.29.7",
"@vanilla-extract/css": "^1.11.1",
"@vanilla-extract/next-plugin": "^2.1.3",
"autoprefixer": "10.4.14",
"clsx": "^1.2.1",
"dotenv-cli": "^7.2.1",
"eslint-config-next": "13.4.2",
"next": "13.4.2",
"next-auth": "^4.22.1",
"postcss": "8.4.23",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-frame-component": "^5.2.6",
"react-hot-toast": "^2.4.1",
"tailwind-merge": "^1.12.0",
"tailwindcss": "3.3.2",
"typescript": "5.0.4",
"zustand": "^4.3.8"
},
"prisma": {
"schema": "prisma/schema.prisma"
},
"devDependencies": {
"@playwright/test": "^1.35.1",
"@tanstack/eslint-plugin-query": "^4.29.9",
"@types/node": "20.1.4",
"@types/react": "18.2.6",
"@types/react-dom": "18.2.4",
"eslint": "8.40.0",
"eslint-config-prettier": "^8.8.0",
"prettier": "2.8.8",
"prettier-plugin-tailwindcss": "^0.3.0",
"prisma": "^4.14.0"
}
}