-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.47 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.47 KB
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
{
"private": true,
"scripts": {
"build": "next build",
"dev": "next dev",
"prettier": "prettier --write --ignore-unknown .",
"prettier:check": "prettier --check --ignore-unknown .",
"start": "next start",
"test": "jest",
"test:watch": "jest --watch",
"coverage": "jest --coverage",
"coverage:open": "open coverage/lcov-report/index.html"
},
"dependencies": {
"@heroicons/react": "^2.2.0",
"@tailwindcss/forms": "^0.5.11",
"@types/node": "25.5.0",
"@vercel/postgres": "^0.10.0",
"autoprefixer": "10.4.27",
"bcrypt": "^6.0.0",
"clsx": "^2.1.1",
"next": "16.1.6",
"postcss": "8.5.8",
"randomstring": "^1.3.1",
"react": "18.3.1",
"react-dom": "18.3.1",
"tailwindcss": "4.2.1",
"typescript": "5.9.3",
"use-debounce": "^10.1.0",
"zod": "^4.3.6"
},
"devDependencies": {
"@tailwindcss/aspect-ratio": "^0.4.2",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.0",
"@types/bcrypt": "^6.0.0",
"@types/randomstring": "^1.3.0",
"@types/react": "18.3.10",
"@types/react-dom": "18.3.1",
"@vercel/style-guide": "^6.0.0",
"dotenv": "^17.2.3",
"eslint": "^8.57.0",
"eslint-config-next": "15.5.4",
"eslint-config-prettier": "10.1.8",
"jest": "^30.3.0",
"jest-environment-jsdom": "^30.2.0",
"prettier": "^3.7.3",
"prettier-plugin-tailwindcss": "0.6.12",
"ts-node": "^10.9.2"
},
"engines": {
"node": ">=18.17.0"
}
}