-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
69 lines (69 loc) · 1.77 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
{
"name": "rankflow",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev & npm run port-db & npx prisma studio",
"build": "next build",
"start": "next start",
"lint": "next lint",
"format": "prettier --write .",
"format:check": "prettier --check .",
"prepare": "husky install",
"port-db": "bash forward-pg-port-ssh.sh",
"postinstall": "prisma generate --schema=./prisma/schema.prisma"
},
"dependencies": {
"@headlessui/react": "^2.1.3",
"@heroicons/react": "^2.1.5",
"@logto/next": "^3.6.0",
"@prisma/client": "^5.19.1",
"clsx": "^2.1.1",
"dotenv": "^16.4.5",
"form-data": "^4.0.0",
"framer-motion": "^11.3.31",
"mailgun.js": "^10.2.3",
"next": "14.2.7",
"next-themes": "^0.3.0",
"prisma": "^5.19.1",
"react": "^18",
"react-dom": "^18",
"schema-dts": "^1.1.2",
"sonner": "^1.5.0",
"zod": "^3.23.8"
},
"devDependencies": {
"@commitlint/cli": "^19.4.1",
"@commitlint/config-conventional": "^19.4.1",
"@types/node": "^20",
"@types/react": "^18",
"@types/react-dom": "^18",
"@typescript-eslint/eslint-plugin": "^5.62.0",
"@typescript-eslint/parser": "^5.62.0",
"autoprefixer": "^10.4.20",
"eslint": "^8.57.0",
"eslint-config-next": "^14.2.7",
"eslint-config-prettier": "^8.10.0",
"husky": "^8.0.3",
"lint-staged": "^13.3.0",
"postcss": "^8.4.42",
"prettier": "^2.8.8",
"prettier-plugin-tailwindcss": "^0.2.8",
"tailwindcss": "^3.4.10",
"typescript": "^5"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"eslint --fix",
"prettier --write"
],
"*.{json,md}": [
"prettier --write"
]
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
}
}