-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
118 lines (118 loc) · 3.66 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
118
{
"name": "gutenberg",
"version": "0.1.0",
"private": true,
"type": "module",
"scripts": {
"format": "prettier --write \"**/*.{ts,tsx,js,md,mdx,css,yaml}\"",
"format:check": "prettier --check \"**/*.{ts,tsx,js,md,mdx,css,yaml}\"",
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"cypress": "cypress open",
"e2e": "start-server-and-test 'yarn dev' http://127.0.0.1:3000 \"dotenv -e .env.local -e .env cypress run --e2e\"",
"ci:e2e": "start-server-and-test 'yarn start' http://127.0.0.1:3000 \"cypress run --e2e\"",
"component": "cypress run --component",
"table": "NEXT_PUBLIC_BASEPATH='' MATERIAL_DIR=.material tsx scripts/table.ts",
"cron": "dotenv -e .env.local -e .env -- tsx scripts/cronScripts.ts",
"pullmat": "dotenv -e .env -e .env.local -- tsx scripts/pullMaterial.ts"
},
"prisma": {
"seed": "tsx prisma/seed.ts"
},
"dependencies": {
"@dnd-kit/core": "^3.0.0",
"@dnd-kit/sortable": "^3.0.0",
"@emotion/react": "^11.7.1",
"@emotion/styled": "^11.7.1",
"@mui/icons-material": "6.1.2",
"@mui/material": "^5.2.5",
"@mui/x-date-pickers": "^6.19.0",
"@next-auth/prisma-adapter": "^1.0.5",
"@next/bundle-analyzer": "^12.0.0",
"@prisma/client": "^4.11.0",
"@qdrant/js-client-rest": "^1.3.0",
"@tailwindcss/aspect-ratio": "^0.4.2",
"@tailwindcss/forms": "^0.5.3",
"@tailwindcss/line-clamp": "^0.4.2",
"@tailwindcss/typography": "^0.5.8",
"@types/dompurify": "^2.3.4",
"@types/js-yaml": "^4.0.0",
"@types/marked": "^4.0.7",
"@types/react-copy-to-clipboard": "^5.0.4",
"@types/uuid": "^9.0.0",
"autoprefixer": "^10.4.13",
"cron": "^2.0.0",
"dompurify": "^2.5.4",
"dotenv": "^16.0.0",
"dotenv-cli": "^7.0.1",
"elkjs": "^0.8.2",
"flowbite": "^1.6.4",
"flowbite-react": "^0.5.0",
"front-matter": "^4.0.2",
"isomorphic-dompurify": "^0.23.0",
"isomorphic-git": "^1.21.0",
"js-yaml": "^4.1.0",
"marked": "^4.1.1",
"next": "14.2.14",
"next-auth": "^4.24.7",
"next-plausible": "3.12.0",
"next-themes": "0.3.0",
"openai": "^4.0.0",
"postcss": "^8.4.19",
"prettier": "^3.1.1",
"react": "18.2.0",
"react-copy-to-clipboard": "^5.1.0",
"react-datetime-picker": "^5.2.0",
"react-dom": "18.2.0",
"react-hook-form": "^7.43.5",
"react-icons": "^4.8.0",
"react-markdown": "^8.0.4",
"react-string-replace": "^1.1.0",
"react-syntax-highlighter": "^15.5.0",
"reactflow": "^11.3.2",
"recoil": "^0.7.0",
"rehype-katex": "^6.0.2",
"remark-directive": "^2.0.1",
"remark-directive-rehype": "^0.4.2",
"remark-gfm": "^3.0.1",
"remark-math": "^5.1.1",
"sentence-similarity": "^3.1.0",
"simple-git": "^3.0.0",
"swr": "^2.1.0",
"tailwindcss": "^3.4.13",
"unist-util-visit": "^4.1.1",
"use-text-selection": "^1.1.5",
"uuid": "^9.0.0",
"wink-distance": "^2.0.2",
"wink-eng-lite-web-model": "^1.5.0",
"wink-nlp": "^1.14.2"
},
"devDependencies": {
"@panva/hkdf": "^1.1.1",
"@testing-library/cypress": "^10.0.0",
"@types/node": "^20.11.0",
"@types/react": "^18.0.21",
"@types/react-dom": "18.0.6",
"@types/react-syntax-highlighter": "^15.5.6",
"cypress": "13.6.0",
"cypress-terminal-report": "^5.3.0",
"eslint": "8.25.0",
"eslint-config-next": "12.3.1",
"jose": "^4.15.5",
"prisma": "^4.11.0",
"start-server-and-test": "^2.0.0",
"tsx": "^4.19.2",
"typescript": "5.6.2"
},
"packageManager": "[email protected]",
"resolutions": {
"react": "18.2.0"
},
"prettier": {
"semi": false,
"trailingComma": "es5",
"printWidth": 120
}
}