-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.2 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.2 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
{
"name": "next-template",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"lint.fix": "next lint --fix",
"prisma.client": "prisma generate",
"prisma.cms": "prisma studio",
"prisma.migrate": "prisma migrate dev --create-only",
"prisma.push": "prisma db push"
},
"dependencies": {
"@prisma/client": "5.5.2",
"clsx": "2.0.0",
"joi": "17.11.0",
"next": "14.0.1",
"next-connect": "1.0.0",
"pusher": "5.1.3",
"pusher-js": "8.3.0",
"react": "18.2.0",
"react-dom": "18.2.0",
"remark-gfm": "4.0.0",
"remark-html": "16.0.1",
"remark-parse": "11.0.0",
"telegram": "2.19.8",
"typescript": "4.9.3",
"unified": "11.0.4"
},
"devDependencies": {
"@types/joi": "17.2.3",
"@types/react": "18.2.34",
"@types/react-dom": "18.2.14",
"@typescript-eslint/eslint-plugin": "5.62.0",
"eslint": "8.28.0",
"eslint-config-htmlacademy": "8.0.0",
"eslint-config-next": "14.0.1",
"eslint-plugin-import": "2.26.0",
"eslint-plugin-jest": "27.1.5",
"jest": "29.3.1",
"prisma": "5.5.2",
"types-joi": "2.1.0"
}
}