forked from pveyes/katla
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 1.1 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
{
"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": {
"@headlessui/react": "^1.4.3",
"@notionhq/client": "^0.4.12",
"canvas-confetti": "^1.4.0",
"cheerio": "^1.0.0-rc.10",
"date-fns": "^2.28.0",
"next": "12.0.8",
"react": "17.0.2",
"react-dom": "17.0.2",
"swr": "^1.1.2",
"use-persisted-state": "^0.3.3"
},
"devDependencies": {
"@testing-library/react-hooks": "^7.0.2",
"@types/react": "^17.0.38",
"autoprefixer": "^10.4.2",
"eslint": "8.7.0",
"eslint-config-next": "12.0.8",
"husky": "^7.0.4",
"jest": "^27.4.7",
"lint-staged": "^12.2.2",
"mockdate": "^3.0.5",
"postcss": "^8.4.5",
"prettier": "^2.5.1",
"tailwindcss": "^3.0.15",
"typescript": "^4.5.4"
}
}