forked from Vertexvis/collaboration-demo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.42 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
{
"name": "collaboration-demo",
"version": "0.1.0",
"private": true,
"dependencies": {
"@emotion/cache": "^11.11.0",
"@emotion/react": "^11.11.1",
"@emotion/server": "^11.11.0",
"@emotion/styled": "^11.10.8",
"@mui/icons-material": "^5.14.6",
"@mui/material": "^5.14.6",
"@react-hook/mouse-position": "^4.1",
"@react-hook/throttle": "^2.2.0",
"@vertexvis/api-client-node": "^0.21.3",
"@vertexvis/ui-react": "^0.0.13",
"@vertexvis/viewer-react": "^0.18.0",
"fast-deep-equal": "^3.1",
"next": "^12.3.4",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-hotkeys-hook": "^3.4.7",
"y-protocols": "^1.0.5",
"y-webrtc": "^10.2.5",
"yjs": "^13.5"
},
"devDependencies": {
"@babel/core": "^7.16",
"@types/node": "^16",
"@types/react": "^17.0",
"@types/react-dom": "^17.0",
"@typescript-eslint/eslint-plugin": "^5",
"@typescript-eslint/parser": "^5",
"babel-plugin-import": "^1.13",
"eslint": "<8.0.0",
"eslint-config-next": "^12.0",
"eslint-config-prettier": "^8",
"eslint-plugin-simple-import-sort": "^7.0",
"prettier": "^2.5",
"tslib": "^2.3",
"typescript": "^4"
},
"scripts": {
"build": "next build",
"clean": "rm -rf .next/ node_modules/",
"dev": "next",
"format": "prettier --write './**/*.+(js|jsx|ts|tsx|json|yml|yaml|md|mdx|html|css)'",
"lint": "next lint",
"start": "next start"
}
}