-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
87 lines (87 loc) · 2.86 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
{
"name": "nowted-app",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"db-server": "json-server ./src/data/db.json",
"lint": "eslint 'src/**/*.{js,ts,tsx}' --fix --format json src --output-file lint_report.json || true",
"performance": "k6 run --vus 10 --duration 30s __tests__/performance/test.js",
"cypress:open": "cypress open",
"cypress:run": "cypress run --e2e",
"test": "next build && next start & wait-on http://localhost:3000 && cypress run --reporter mochawesome"
},
"dependencies": {
"@headlessui/react": "^1.7.15",
"@imbios/next-pwa": "^1.1.1",
"@paralleldrive/cuid2": "^2.2.1",
"@radix-ui/react-alert-dialog": "1.0.5",
"@radix-ui/react-context-menu": "^2.1.4",
"@radix-ui/react-dialog": "1.0.5",
"@radix-ui/react-dropdown-menu": "^2.0.5",
"@radix-ui/react-label": "^2.0.2",
"@radix-ui/react-popover": "^1.0.6",
"@radix-ui/react-select": "^1.2.2",
"@radix-ui/react-slot": "^1.0.2",
"@radix-ui/react-toast": "^1.1.4",
"@radix-ui/react-tooltip": "^1.0.6",
"@react-spring/web": "^9.7.3",
"@tiptap/extension-bubble-menu": "^2.0.3",
"@tiptap/extension-hard-break": "^2.0.3",
"@tiptap/extension-heading": "^2.0.3",
"@tiptap/extension-image": "^2.0.3",
"@tiptap/extension-link": "^2.0.3",
"@tiptap/extension-placeholder": "^2.0.3",
"@tiptap/extension-underline": "^2.0.3",
"@tiptap/pm": "^2.0.3",
"@tiptap/react": "^2.0.3",
"@tiptap/starter-kit": "^2.0.3",
"@types/node": "20.2.5",
"@types/react": "18.2.8",
"@types/react-dom": "18.2.4",
"autoprefixer": "10.4.14",
"class-variance-authority": "^0.6.0",
"clsx": "^1.2.1",
"eslint-config-next": "13.4.4",
"framer-motion": "^10.12.17",
"hamburger-react": "^2.5.0",
"html-to-text": "^9.0.5",
"lucide-react": "^0.234.0",
"next": "13.4.4",
"next-zustand": "^1.0.1",
"nextjs-toploader": "^1.4.2",
"nprogress": "^0.2.0",
"postcss": "8.4.24",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-icons": "^4.9.0",
"react-responsive": "^9.0.2",
"slugify": "^1.6.6",
"start-server-and-test": "^2.0.3",
"tailwind-merge": "^1.13.0",
"tailwindcss": "3.3.2",
"tailwindcss-animate": "^1.0.5",
"typescript": "5.1.3",
"uuid": "^9.0.0",
"wait-on": "^7.2.0",
"zustand": "^4.3.8"
},
"devDependencies": {
"@eslint/compat": "^1.1.0",
"@eslint/js": "^8.0.0",
"@tailwindcss/typography": "^0.5.9",
"@types/html-to-text": "^9.0.1",
"@types/nprogress": "^0.2.3",
"@types/uuid": "^9.0.1",
"cypress": "^13.6.0",
"cypress-multi-reporters": "^1.6.4",
"eslint": "^8.0.0",
"eslint-plugin-react": "^7.34.2",
"globals": "^15.4.0",
"mochawesome": "^7.1.3",
"mochawesome-merge": "^4.3.0",
"typescript-eslint": "^7.13.0"
}
}