-
-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
95 lines (95 loc) · 2.86 KB
/
Copy pathpackage.json
File metadata and controls
95 lines (95 loc) · 2.86 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
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
{
"name": "noteser",
"version": "0.2.0",
"private": true,
"engines": {
"node": "22.x"
},
"scripts": {
"dev": "next dev --turbopack -H 0.0.0.0 -p 3001",
"dev:fresh": "rm -rf .next && next dev --turbopack -H 0.0.0.0 -p 3001",
"build": "next build",
"start": "next start",
"prettier": "prettier --write .",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"typecheck": "tsc --noEmit",
"e2e": "playwright test",
"e2e:ci": "playwright test --config playwright.config.ci.ts",
"e2e:headed": "playwright test --headed",
"e2e:debug": "playwright test --debug",
"e2e:ui": "playwright test --ui",
"e2e:report": "playwright show-report",
"e2e:sync": "node scripts/run-e2e-sync.js",
"e2e:sync:codeberg": "node scripts/run-e2e-sync-codeberg.js",
"e2e:verify": "playwright test --config=playwright.config.verify.ts"
},
"dependencies": {
"@codemirror/lang-markdown": "^6.5.1",
"@codemirror/language": "^6.12.4",
"@codemirror/search": "^6.7.1",
"@dnd-kit/core": "^6.1.0",
"@dnd-kit/sortable": "^8.0.0",
"@dnd-kit/utilities": "^3.2.2",
"@heroicons/react": "^2.2.0",
"@tailwindcss/typography": "^0.5.20",
"@uiw/react-codemirror": "^4.25.11",
"@vercel/analytics": "^2.0.1",
"buffer": "^6.0.3",
"file-saver": "^2.0.5",
"fuse.js": "^7.5.0",
"idb-keyval": "^6.3.0",
"isomorphic-git": "^1.40.0",
"jszip": "^3.10.1",
"next": "^15.5.18",
"react": "^19.1.0",
"react-dom": "^19.2.8",
"react-markdown": "^10.1.0",
"react-syntax-highlighter": "^15.6.1",
"remark-gfm": "^4.0.1",
"undici": "^8.9.0",
"unist-util-visit": "^5.1.0",
"uuid": "^14.0.1",
"y-codemirror.next": "^0.3.5",
"y-websocket": "^3.1.0",
"yjs": "^13.6.31",
"zustand": "^5.0.14"
},
"devDependencies": {
"@eslint/eslintrc": "^3",
"@playwright/test": "^1.61.1",
"@tailwindcss/postcss": "^4.3.3",
"@testing-library/jest-dom": "^6.4.2",
"@testing-library/react": "^16.3.3",
"@testing-library/user-event": "^14.4.3",
"@types/file-saver": "^2.0.7",
"@types/jest": "^30.0.0",
"@types/mdast": "^4.0.4",
"@types/node": "^22.10.0",
"@types/react": "^19.2.18",
"@types/react-dom": "^19.2.5",
"@types/react-syntax-highlighter": "^15.5.13",
"@types/uuid": "^10.0.0",
"eslint": "^9",
"eslint-config-next": "^15.5.18",
"jest": "^29.7.0",
"jest-environment-jsdom": "^30.0.0-beta.3",
"postcss": "^8.5.18",
"prettier": "^3.9.6",
"tailwindcss": "^4.3.3",
"typescript": "^5.7.2",
"unified": "^11.0.5"
},
"overrides": {
"postcss": "^8.5.18",
"brace-expansion": "^5.0.8",
"prismjs": "^1.30.0",
"js-yaml": "^4.3.1",
"@babel/core": "^7.29.6",
"sharp": "^0.35.0",
"nanoid": "^3.3.17"
}
}