-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
94 lines (94 loc) · 2.71 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
{
"name": "keeplink",
"version": "0.1.0",
"private": true,
"packageManager": "[email protected]",
"scripts": {
"lint": "eslint --fix --ext .js,.ts,jsx,tsx . && dprint fmt",
"test": "npm run lint",
"dev": "next dev",
"build": "next build",
"start": "next start",
"postinstall": "pnpx patch-package"
},
"dependencies": {
"@chakra-ui/icons": "^2.0.0",
"@chakra-ui/react": "^2.0.2",
"@chakra-ui/theme-tools": "^2.0.0",
"@emotion/react": "^11.9.0",
"@emotion/styled": "^11.8.1",
"@metascraper/helpers": "^5.29.3",
"@milahu/patch-package-with-pnpm-support": "^6.4.10",
"@next/bundle-analyzer": "^12.1.6",
"@prisma/client": "^3.12.0",
"@react-hookz/web": "^14.2.2",
"@saas-ui/auth": "^0.7.12",
"@saas-ui/react": "^0.13.5",
"@supabase/supabase-js": "^1.33.3",
"@tailwindcss/forms": "^0.5.2",
"@yaireo/tagify": "^4.12.0",
"cookie": "^0.4.2",
"date-fns": "^2.28.0",
"execa": "^6.1.0",
"framer-motion": "^6.3.3",
"he": "^1.2.0",
"metascraper": "^5.29.3",
"metascraper-description": "^5.29.3",
"metascraper-title": "^5.29.3",
"metascraper-url": "^5.29.3",
"next": "^12.1.6",
"next-pwa": "^5.5.2",
"react": "^18.1.0",
"react-dom": "^18.1.0",
"react-feather": "^2.0.9",
"react-hook-form": "^7.31.1",
"react-icons": "^4.3.1",
"single-file": "github:gildas-lormeau/SingleFile",
"swr": "^1.3.0",
"user-agents": "^1.0.1021",
"zod": "^3.14.4"
},
"devDependencies": {
"@next/eslint-plugin-next": "^12.1.6",
"@types/cookie": "^0.5.1",
"@types/he": "^1.1.2",
"@types/node": "^17.0.35",
"@types/react": "^18.0.9",
"@types/user-agents": "^1.0.2",
"@types/yaireo__tagify": "^4.12.0",
"@typescript-eslint/eslint-plugin": "^5.25.0",
"@typescript-eslint/parser": "^5.25.0",
"autoprefixer": "^10.4.7",
"dprint": "^0.28.0",
"duplicate-package-checker-webpack-plugin": "^3.0.0",
"eslint": "^8.15.0",
"eslint-config-sukka": "^1.3.0",
"eslint-import-resolver-typescript": "^2.7.1",
"eslint-plugin-import": "npm:[email protected]",
"nano-staged": "^0.8.0",
"postcss": "^8.4.14",
"prettier": "^2.6.2",
"prisma": "^3.12.0",
"simple-git-hooks": "^2.7.0",
"tailwindcss": "^3.0.24",
"ts-node": "^10.7.0",
"type-fest": "^2.12.2",
"typescript": "^4.6.4",
"yup": "^0.32.11"
},
"browserslist": [
"> 0.5%",
"last 2 versions",
"Firefox ESR",
"not dead",
"not IE 11"
],
"simple-git-hooks": {
"pre-commit": "./node_modules/.bin/nano-staged"
},
"nano-staged": {
"*.{ts,tsx,js,jsx}": "eslint --fix --ext .js,.ts,jsx,tsx",
"*.prisma": "prisma format",
"*.{json,css,md}": "dprint fmt"
}
}