-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.13 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
{
"name": "link",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint"
},
"prisma": {
"seed": "ts-node -P tsconfig-seed.json -r tsconfig-paths/register --transpileOnly prisma/seed.ts"
},
"dependencies": {
"@prisma/client": "4.6.1",
"@types/bcrypt": "^5.0.0",
"@types/cookie": "^0.5.1",
"@types/node": "18.16.3",
"@types/react": "18.2.0",
"@types/react-dom": "18.2.1",
"@types/react-modal": "^3.16.0",
"autoprefixer": "10.4.14",
"bcrypt": "5.1.0",
"class-variance-authority": "0.4.0",
"clsx": "1.2.1",
"cookie": "0.5.0",
"css-reset-and-normalize": "2.3.6",
"eslint": "8.39.0",
"eslint-config-next": "13.3.4",
"jose": "4.11.1",
"next": "13.3.4",
"postcss": "8.4.23",
"prettier": "^3.0.1",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-feather": "2.0.10",
"react-modal": "^3.16.1",
"tailwindcss": "3.3.2",
"typescript": "5.0.4"
},
"devDependencies": {
"prisma": "^5.1.1",
"ts-node": "10.9.1",
"tsconfig-paths": "4.1.1"
}
}