-
Notifications
You must be signed in to change notification settings - Fork 91
/
Copy pathpackage.json
56 lines (56 loc) · 1.51 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
52
53
54
55
56
{
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"check-types": "tsc --pretty --noEmit",
"check-format": "prettier --check .",
"check-lint": "eslint . --ext ts --ext tsx --ext js",
"format": "prettier --write .",
"test-all": "npm run check-format && npm run check-lint && npm run check-types && npm run build",
"prepare": "husky install",
"lint": "next lint"
},
"dependencies": {
"@headlessui/react": "^1.4.1",
"@microlink/mql": "^0.10.31",
"@notionhq/client": "^0.4.4",
"@supabase/supabase-js": "^1.25.0",
"@vercel/og": "^0.0.20",
"copy-to-clipboard": "^3.3.1",
"dayjs": "^1.11.0",
"framer-motion": "^5.4.1",
"next": "^13.0.6",
"next-plausible": "^3.0.0",
"next-themes": "0.0.15",
"preact": "^10.6.4",
"prism-react-renderer": "^1.2.1",
"puppeteer": "^19.3.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-share": "^4.4.0",
"rss": "^1.2.2",
"slugify": "^1.6.1",
"swr": "^1.0.1"
},
"devDependencies": {
"@tailwindcss/forms": "^0.4.0",
"@tailwindcss/typography": "^0.5.0",
"@types/react": "^17.0.32",
"autoprefixer": "^10.4.13",
"eslint": "7.32.0",
"eslint-config-next": "^13.0.6",
"husky": "^7.0.0",
"postcss": "^8.4.4",
"prettier": "^2.4.1",
"tailwindcss": "^3.0.0",
"typescript": "^4.4.4"
},
"prettier": {
"arrowParens": "always",
"singleQuote": true,
"tabWidth": 2,
"trailingComma": "none"
}
}