-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.68 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.68 KB
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
{
"name": "novislides",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev --webpack",
"build": "next build --webpack",
"start": "node scripts/start-next.cjs",
"lint": "eslint app components lib tests *.js *.mjs",
"prisma:generate": "prisma generate",
"prisma:migrate": "prisma migrate dev",
"prisma:deploy": "prisma migrate deploy",
"test": "vitest",
"test:unit": "vitest run",
"test:e2e": "playwright test"
},
"dependencies": {
"@dnd-kit/core": "^6.3.1",
"@dnd-kit/sortable": "^10.0.0",
"@dnd-kit/utilities": "^3.2.2",
"@fontsource/noto-sans": "^5.2.10",
"@mantine/core": "^8.3.14",
"@mantine/dropzone": "^8.3.14",
"@mantine/hooks": "^8.3.14",
"@mantine/notifications": "^8.3.14",
"@material-design-icons/svg": "^0.14.15",
"@nine-thirty-five/material-symbols-react": "^1.25.1",
"@prisma/adapter-better-sqlite3": "^7.3.0",
"@prisma/client": "^7.3.0",
"@tanstack/react-query": "^5.51.6",
"better-sqlite3": "^12.6.2",
"clsx": "^2.1.1",
"image-size": "^2.0.2",
"konva": "^10.2.0",
"next": "^16.1.6",
"react": "^19.2.4",
"react-dom": "^19.2.4",
"react-konva": "^19.2.2",
"react-markdown": "^10.1.0",
"remark-gfm": "^4.0.1",
"reveal.js": "^5.1.0",
"sharp": "^0.34.5",
"use-image": "^1.0.7",
"zod": "^4.3.6"
},
"devDependencies": {
"@playwright/test": "^1.58.1",
"@types/node": "^25.2.1",
"@types/react": "^19.2.13",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "^5.1.3",
"eslint": "^9.39.2",
"eslint-config-next": "^16.1.6",
"prisma": "^7.3.0",
"typescript": "^5.4.5",
"vitest": "^4.0.18"
}
}