-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.28 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.28 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
{
"name": "100proofreaders",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "concurrently \"npm run dev:next\" \"npm run start:signal-server\"",
"dev:next": "next dev",
"build": "next build",
"start": "concurrently \"npm run start:signal-server\" \"npm run start:next\"",
"start:next": "next start",
"start:signal-server": "node node_modules/y-webrtc/bin/server.js",
"lint": "next lint",
"format": "prettier ./ --check .",
"test": "vitest",
"format:fix": "npx prettier --write ."
},
"dependencies": {
"@types/node": "20.5.9",
"@types/react": "18.2.21",
"@types/react-dom": "18.2.7",
"autoprefixer": "10.4.15",
"concurrently": "^8.2.1",
"convex": "^1.2.1",
"eslint": "8.48.0",
"eslint-config-next": "13.4.19",
"next": "13.4.19",
"postcss": "8.4.29",
"quill-cursors": "^4.0.2",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-icons": "^4.11.0",
"react-quill": "^2.0.0",
"react-spinners": "^0.13.8",
"tailwindcss": "3.3.3",
"typescript": "5.2.2",
"y-quill": "^0.1.5",
"y-webrtc": "^10.2.5",
"yjs": "^13.6.7"
},
"devDependencies": {
"@testing-library/react": "^14.0.0",
"@types/quill": "^2.0.11",
"prettier": "3.0.3",
"vitest": "^0.34.4"
}
}