-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
92 lines (92 loc) · 2.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
{
"name": "whiteboard",
"version": "1.0.4",
"license": "AGPL-3.0-or-later",
"private": true,
"type": "module",
"main": "src/main.tsx",
"scripts": {
"build": "vite --mode production build",
"dev": "vite --mode development build",
"watch": "vite --mode development build --watch",
"lint": "eslint --ext .js,.mjs,.ts,.tsx,.vue src websocket_server tests/integration ",
"lint:fix": "eslint --ext .js,.mjs,.ts,.tsx,.vue src websocket_server tests/integration --fix",
"stylelint": "stylelint 'src/**/*.{css,scss,sass}'",
"stylelint:fix": "stylelint 'src/**/*.{css,scss,sass}' --fix",
"server:start": "node websocket_server/main.js",
"server:watch": "nodemon websocket_server/main.js",
"test": "vitest run",
"test:watch": "vitest"
},
"dependencies": {
"@excalidraw/excalidraw": "^0.17.6",
"@mdi/js": "^7.4.47",
"@mdi/react": "^1.6.1",
"@mdi/svg": "^7.4.47",
"@nextcloud/auth": "^2.4.0",
"@nextcloud/axios": "^2.5.1",
"@nextcloud/dialogs": "^5.3.7",
"@nextcloud/event-bus": "^3.3.1",
"@nextcloud/files": "^3.10.0",
"@nextcloud/initial-state": "^2.2.0",
"@nextcloud/l10n": "^3.1.0",
"@nextcloud/router": "^3.0.1",
"@nextcloud/sharing": "^0.2.3",
"@nextcloud/vue": "^8.21.0",
"@socket.io/redis-streams-adapter": "^0.2.2",
"axios": "^1.7.8",
"dotenv": "^16.4.5",
"express": "^5.0.1",
"jsonwebtoken": "^9.0.2",
"lodash": "^4.17.21",
"lru-cache": "^11.0.2",
"node-fetch": "^3.3.2",
"prom-client": "^14.2.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"redis": "^4.7.0",
"socket.io": "^4.8.1",
"socket.io-client": "^4.8.1",
"socket.io-prometheus": "^0.3.0",
"vue": "^2.7.16"
},
"devDependencies": {
"@nextcloud/browserslist-config": "^3.0.1",
"@nextcloud/eslint-config": "^8.4.1",
"@nextcloud/stylelint-config": "^3.0.1",
"@nextcloud/vite-config": "^1.4.2",
"@types/react-dom": "^18.3.1",
"@vitejs/plugin-react": "^4.3.4",
"@vue/tsconfig": "^0.5.1",
"nodemon": "^3.1.7",
"prettier": "^3.4.1",
"stylelint-config-css-modules": "^4.4.0",
"typescript": "^5.7.2",
"typescript-plugin-css-modules": "^5.1.0",
"vite": "^5.4.11",
"vite-plugin-static-copy": "^2.2.0",
"vitest": "^2.1.6"
},
"prettier": {
"useTabs": true,
"semi": false,
"singleQuote": true,
"bracketSameLine": true,
"tabWidth": 4
},
"browserslist": [
"extends @nextcloud/browserslist-config"
],
"eslintConfig": {
"extends": [
"@nextcloud/eslint-config/typescript"
],
"rules": {
"jsdoc/require-jsdoc": "off"
}
},
"engines": {
"node": "^20",
"npm": "^10"
}
}