-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
117 lines (117 loc) · 3.76 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
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
{
"name": "ts-nextjs-tailwind-starter",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"lint:fix": "eslint src --fix && yarn format",
"lint:strict": "eslint --max-warnings=0 src",
"typecheck": "tsc --noEmit --incremental false",
"test:watch": "jest --watch",
"test": "jest",
"format": "prettier -w .",
"format:check": "prettier -c .",
"postbuild": "next-sitemap --config next-sitemap.config.js",
"prepare": "husky install"
},
"dependencies": {
"@emotion/react": "^11.10.5",
"@emotion/styled": "^11.10.5",
"@firebase/app-types": "^0.9.0",
"@headlessui/react": "^1.7.5",
"@mui/icons-material": "^5.11.0",
"@mui/material": "^5.11.1",
"@stripe/react-stripe-js": "^1.16.1",
"@stripe/stripe-js": "^1.46.0",
"@tiptap/core": "^2.0.0-beta.209",
"@tiptap/extension-bullet-list": "^2.0.0-beta.209",
"@tiptap/extension-character-count": "^2.0.0-beta.209",
"@tiptap/extension-font-family": "^2.0.0-beta.209",
"@tiptap/extension-list-item": "^2.0.0-beta.209",
"@tiptap/extension-ordered-list": "^2.0.0-beta.209",
"@tiptap/extension-text-align": "^2.0.0-beta.209",
"@tiptap/extension-text-style": "^2.0.0-beta.209",
"@tiptap/extension-underline": "^2.0.0-beta.209",
"@tiptap/react": "^2.0.0-beta.209",
"@tiptap/starter-kit": "^2.0.0-beta.209",
"@types/express-slow-down": "^1.3.2",
"@types/uuid": "^9.0.0",
"axios": "^1.2.1",
"clsx": "^1.2.1",
"express-rate-limit": "6.6.0",
"express-slow-down": "^1.5.0",
"firebase": "^9.15.0",
"firebase-admin": "^11.3.0",
"flowbite": "^1.5.5",
"flowbite-react": "^0.3.7",
"micro": "^10.0.1",
"next": "^13.1.5",
"next-firebase-auth": "^1.0.0-canary.19",
"openai": "^3.1.0",
"prosemirror-commands": "^1.5.0",
"prosemirror-dropcursor": "^1.6.1",
"prosemirror-gapcursor": "^1.3.1",
"prosemirror-history": "^1.3.0",
"prosemirror-keymap": "^1.2.0",
"prosemirror-model": "^1.18.3",
"prosemirror-schema-list": "^1.2.2",
"prosemirror-state": "^1.4.2",
"prosemirror-transform": "^1.7.0",
"prosemirror-view": "^1.29.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-gtm-module": "^2.0.11",
"react-hook-form": "^7.40.0",
"react-icons": "^4.7.1",
"react-joyride": "^2.5.3",
"react-use": "^17.4.0",
"stripe": "^11.3.0",
"tailwind-merge": "^1.8.0",
"use-debounce": "^9.0.2",
"uuid": "^9.0.0",
"yarn": "^1.22.19"
},
"devDependencies": {
"@commitlint/cli": "^16.3.0",
"@commitlint/config-conventional": "^16.2.4",
"@minoru/react-dnd-treeview": "^3.4.0",
"@svgr/webpack": "^6.5.1",
"@tailwindcss/forms": "^0.5.3",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^13.4.0",
"@types/gtag.js": "^0.0.12",
"@types/react": "^18.0.26",
"@types/react-gtm-module": "^2.0.1",
"@typescript-eslint/eslint-plugin": "^5.45.0",
"@typescript-eslint/parser": "^5.45.0",
"autoprefixer": "^10.4.13",
"eslint": "^8.29.0",
"eslint-config-next": "^13.0.6",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-simple-import-sort": "^7.0.0",
"eslint-plugin-unused-imports": "^2.0.0",
"husky": "^7.0.4",
"jest": "^27.5.1",
"lint-staged": "^12.5.0",
"next-router-mock": "^0.7.5",
"next-sitemap": "^2.5.28",
"postcss": "^8.4.19",
"prettier": "^2.8.0",
"prettier-plugin-tailwindcss": "^0.1.13",
"react-dnd": "^16.0.1",
"tailwindcss": "^3.2.4",
"typescript": "^4.9.3"
},
"lint-staged": {
"**/*.{js,jsx,ts,tsx}": [
"eslint --max-warnings=0",
"prettier -w"
],
"**/*.{json,css,scss,md,webmanifest}": [
"prettier -w"
]
}
}