-
Notifications
You must be signed in to change notification settings - Fork 18
/
package.json
51 lines (51 loc) · 1.33 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
{
"name": "katla",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"test": "jest",
"update": "node ./.scripts/update.js",
"format": "prettier --write '**/*.{js,md,json,yml,yaml,css,ts,tsx}'",
"prepare": "husky install"
},
"lint-staged": {
"**/*": "prettier --write --ignore-unknown"
},
"dependencies": {
"@liveblocks/client": "^0.14.1",
"@liveblocks/node": "^0.3.0",
"@liveblocks/react": "^0.14.1",
"@reach/dialog": "^0.16.2",
"@reach/menu-button": "^0.16.2",
"@sentry/nextjs": "^6.17.4",
"@supabase/supabase-js": "^1.30.7",
"canvas-confetti": "^1.4.0",
"cheerio": "^1.0.0-rc.10",
"date-fns": "^2.28.0",
"file-saver": "^2.0.5",
"next": "^12.1.0",
"next-themes": "^0.0.16",
"react": "17.0.2",
"react-dom": "17.0.2",
"react-hot-toast": "^2.2.0",
"swr": "^1.1.2"
},
"devDependencies": {
"@octokit/rest": "^18.12.0",
"@testing-library/react-hooks": "^7.0.2",
"@types/react": "^17.0.38",
"autoprefixer": "^10.4.2",
"eslint": "8.7.0",
"eslint-config-next": "12.1.0",
"husky": "^7.0.4",
"jest": "^27.4.7",
"lint-staged": "^12.2.2",
"postcss": "^8.4.5",
"prettier": "^2.5.1",
"tailwindcss": "^3.0.15",
"typescript": "^4.5.4"
}
}