generated from FelipeMiiller/nextjs-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
102 lines (102 loc) · 3.25 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
100
101
102
{
"name": "blog",
"version": "0.1.2",
"scripts": {
"clean": "rimraf .next",
"dev": "next dev",
"build": "next build",
"prebuild": "yarn clean",
"start": "next start",
"lint": "next lint",
"lint:fix": "next lint --fix",
"preview": "next build && next start",
"typecheck": "tsc --noEmit",
"format:write": "prettier --write \"**/*.{ts,tsx,mdx}\" --cache",
"format:check": "prettier --check \"**/*.{ts,tsx,mdx}\" --cache",
"format": "yarn format:write && yarn lint:fix",
"test": "jest --watch",
"test:changed": "jest --findRelatedTests"
},
"dependencies": {
"@notionhq/client": "^2.2.15",
"@radix-ui/react-avatar": "^1.0.3",
"@radix-ui/react-checkbox": "^1.0.4",
"@radix-ui/react-dialog": "^1.1.2",
"@radix-ui/react-dropdown-menu": "^2.0.5",
"@radix-ui/react-icons": "^1.3.0",
"@radix-ui/react-label": "^2.0.2",
"@radix-ui/react-popover": "^1.0.6",
"@radix-ui/react-select": "^1.2.2",
"@radix-ui/react-separator": "^1.0.3",
"@radix-ui/react-slot": "^1.1.0",
"@radix-ui/react-tabs": "^1.0.4",
"@tanstack/react-table": "^8.10.1",
"@types/react-syntax-highlighter": "^15.5.13",
"autoprefixer": "10.4.15",
"class-variance-authority": "^0.7.0",
"clsx": "^2.0.0",
"cmdk": "^1.0.0",
"date-fns": "^2.30.0",
"encoding": "^0.1.13",
"github-slugger": "^2.0.0",
"katex": "^0.16.11",
"lucide-react": "^0.460.0",
"next": "14.2.16",
"next-themes": "^0.3.0",
"notion-to-md": "^3.1.1",
"postcss": "8.4.29",
"qs": "^6.13.0",
"react": "^18",
"react-day-picker": "^8.8.2",
"react-dom": "^18",
"react-markdown": "^9.0.1",
"react-syntax-highlighter": "^15.6.1",
"rehype-katex": "^7.0.1",
"rehype-raw": "^7.0.0",
"rehype-sanitize": "^6.0.0",
"remark-autolink-headings": "^7.0.1",
"remark-code": "^1.0.0-0",
"remark-directive": "^2.0.1",
"remark-emoji": "^5.0.1",
"remark-external-links": "^9.0.1",
"remark-footnotes": "^4.0.1",
"remark-gfm": "^4.0.0",
"remark-github": "^12.0.0",
"remark-math": "^6.0.0",
"remark-mentions": "^1.1.0",
"remark-task-list": "^0.0.3",
"sonner": "^1.7.0",
"tailwind-merge": "^2.5.4",
"tailwindcss": "^3.4.1",
"tailwindcss-animate": "^1.0.7",
"use-debounce": "^10.0.4"
},
"devDependencies": {
"@ianvs/prettier-plugin-sort-imports": "^4.1.0",
"@tailwindcss/typography": "^0.5.13",
"@testing-library/dom": "^9.3.3",
"@testing-library/jest-dom": "^6.1.3",
"@testing-library/react": "^14.0.0",
"@testing-library/user-event": "^14.5.1",
"@types/jest": "^29.5.5",
"@types/node": "20.6.2",
"@types/qs": "^6.9.17",
"@types/react": "18.2.21",
"@types/react-dom": "18.2.7",
"@typescript-eslint/eslint-plugin": "^6.7.4",
"@typescript-eslint/parser": "^8.16.0",
"eslint": "^8.50.0",
"eslint-config-next": "^13.5.4",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-jest": "^27.5.0",
"eslint-plugin-prettier": "^5.0.0",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"identity-obj-proxy": "^3.0.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"prettier": "3.0.3",
"ts-jest": "^29.1.1",
"typescript": "5.2.2"
}
}