-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
99 lines (99 loc) · 3.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
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
95
96
97
98
99
{
"name": "teste_de_facilidade_de_leitura",
"author": "jnaraujo",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"export": "next export",
"lint": "next lint",
"format": "prettier --write .",
"analyze": "ANALYZE=true && next build",
"netlify": "netlify build && netlify deploy",
"test:watch": "vitest",
"test": "vitest run",
"coverage": "vitest run --coverage",
"prepare": "husky install"
},
"dependencies": {
"@radix-ui/react-checkbox": "^1.0.4",
"@radix-ui/react-dialog": "^1.1.1",
"@radix-ui/react-label": "^2.0.2",
"@radix-ui/react-popover": "^1.0.7",
"@radix-ui/react-select": "^2.0.0",
"@radix-ui/react-slot": "^1.0.2",
"@radix-ui/react-tooltip": "^1.0.7",
"@sentry/nextjs": "^7.91.0",
"@tiptap/core": "^2.0.4",
"@tiptap/extension-blockquote": "^2.0.0-beta.29",
"@tiptap/extension-bold": "^2.0.0-beta.28",
"@tiptap/extension-bullet-list": "^2.0.0-beta.29",
"@tiptap/extension-document": "^2.0.0-beta.17",
"@tiptap/extension-heading": "^2.0.0-beta.29",
"@tiptap/extension-history": "^2.0.0-beta.199",
"@tiptap/extension-italic": "^2.0.0-beta.28",
"@tiptap/extension-list-item": "^2.0.0-beta.23",
"@tiptap/extension-ordered-list": "^2.0.0-beta.30",
"@tiptap/extension-paragraph": "^2.0.0-beta.26",
"@tiptap/extension-placeholder": "^2.0.0-beta.53",
"@tiptap/extension-text": "^2.0.0-beta.17",
"@tiptap/extension-text-align": "^2.0.0-beta.31",
"@tiptap/extension-underline": "^2.0.0-beta.25",
"@tiptap/pm": "^2.0.4",
"@tiptap/react": "^2.0.4",
"@types/react": "^18.2.67",
"axios": "^0.27.2",
"class-variance-authority": "^0.7.0",
"clsx": "^2.0.0",
"lucide-react": "^0.285.0",
"next": "^14.0.4",
"notion-client": "^6.12.12",
"react": "^18.2.0",
"react-confetti": "^6.1.0",
"react-dom": "^18.2.0",
"react-hook-form": "^7.41.0",
"react-hot-toast": "^2.4.0",
"react-markdown": "^9.0.1",
"react-notion": "^0.10.0",
"react-use": "^17.4.0",
"sanitize-html-react": "^1.13.0",
"sass": "^1.62.1",
"sharp": "^0.30.7",
"tailwind-merge": "^1.14.0",
"tailwindcss-animate": "^1.0.7",
"terser-webpack-plugin": "^5.3.3",
"zustand": "^4.3.2"
},
"devDependencies": {
"@next/bundle-analyzer": "^12.3.1",
"@tailwindcss/typography": "^0.5.10",
"@types/markdown-it": "^12.2.3",
"@types/node": "^18.6.3",
"@types/react-router-dom": "^5.3.3",
"@vitest/coverage-c8": "^0.23.4",
"autoprefixer": "^10.4.16",
"duplicate-package-checker-webpack-plugin": "^3.0.0",
"eslint": "^8.51.0",
"eslint-config-next": "^13.5.4",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-prettier": "^5.0.1",
"husky": "^8.0.1",
"postcss": "^8.4.31",
"prettier": "^3.0.3",
"prettier-plugin-tailwindcss": "^0.5.5",
"tailwindcss": "^3.3.3",
"typescript": "^4.8.3",
"vitest": "^1.1.1"
},
"browserslist": [
">0.3%",
"last 3 versions",
"not dead",
"not ie <= 11",
"not op_mini all"
],
"engines": {
"node": ">=16.0.0"
}
}