-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
51 lines (51 loc) · 1.32 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
{
"private": true,
"scripts": {
"build": "next build",
"dev": "next dev",
"start": "next start",
"seed": "node -r dotenv/config ./scripts/seed.js",
"lint": "next lint",
"format:eslint": "eslint --fix .",
"format:fix": "prettier --cache --log-level silent --write ."
},
"dependencies": {
"@heroicons/react": "^2.0.18",
"@tailwindcss/forms": "^0.5.6",
"argon2": "^0.31.1",
"autoprefixer": "10.4.16",
"clsx": "^2.0.0",
"next": "^14.0.1",
"next-auth": "beta",
"postcss": "8.4.31",
"postgres": "^3.4.2",
"react": "18.2.0",
"react-dom": "18.2.0",
"remove-undefined-objects": "^5.0.0",
"sharp": "^0.32.6",
"tailwindcss": "3.3.5",
"typescript": "5.2.2",
"ua-parser-js": "^1.0.37",
"use-debounce": "^9.0.4",
"valid-data-url": "^5.0.0",
"zod": "^3.22.4"
},
"devDependencies": {
"@next/eslint-plugin-next": "^14.0.1",
"@types/bcrypt": "^5.0.1",
"@types/node": "^20.8.10",
"@types/react": "18.2.33",
"@types/react-dom": "18.2.14",
"@types/ua-parser-js": "^0.7.38",
"@types/valid-data-url": "^2.0.1",
"dotenv": "^16.3.1",
"eslint": "^8.52.0",
"eslint-config-next": "^14.0.1",
"eslint-plugin-jsx-a11y": "^6.7.1",
"prettier": "^3.0.3"
},
"engines": {
"node": ">=20"
},
"license": "MIT"
}