-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.27 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
{
"description": "This repository contains a collaborative starter kit using Liveblocks and Next.js.",
"license": "Apache-2.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint --fix",
"typecheck": "tsc --project tsconfig.json --noEmit"
},
"dependencies": {
"@liveblocks/client": "^0.19.10",
"@liveblocks/node": "^0.19.10",
"@liveblocks/react": "^0.19.10",
"@radix-ui/react-dialog": "^1.0.2",
"@radix-ui/react-popover": "^1.0.2",
"@radix-ui/react-select": "^1.1.1",
"@radix-ui/react-tabs": "^1.0.1",
"@radix-ui/react-tooltip": "^1.0.2",
"base-64": "^1.0.0",
"clsx": "^1.2.1",
"date-fns": "^2.29.3",
"nanoid": "^4.0.0",
"next": "^13.0.3",
"next-auth": "^4.16.4",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"swr": "^1.3.0"
},
"devDependencies": {
"@types/base-64": "^1.0.0",
"@types/node": "^18.11.9",
"@types/react": "18.0.25",
"@typescript-eslint/eslint-plugin": "^5.42.1",
"@typescript-eslint/parser": "^5.42.1",
"eslint": "^8.27.0",
"eslint-config-next": "^13.0.3",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"prettier": "^2.7.1",
"typescript": "^4.8.4"
}
}