-
Notifications
You must be signed in to change notification settings - Fork 27
Expand file tree
/
Copy pathpackage.json
More file actions
129 lines (129 loc) · 3.79 KB
/
package.json
File metadata and controls
129 lines (129 loc) · 3.79 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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
{
"name": "whiteboard",
"version": "1.5.7",
"license": "AGPL-3.0-or-later",
"private": true,
"type": "module",
"main": "src/main.ts",
"scripts": {
"build": "NODE_OPTIONS='--max-old-space-size=8192' vite --mode production build",
"dev": "NODE_OPTIONS='--max-old-space-size=8192' vite --mode development build",
"watch": "nodemon --watch src --ext js,jsx,ts,tsx,vue,scss,css --exec 'npm run dev'",
"lint": "ESLINT_USE_FLAT_CONFIG=false eslint --config .eslintrc.cjs --ext .js,.mjs,.ts,.tsx,.vue src websocket_server tests/integration",
"lint:fix": "ESLINT_USE_FLAT_CONFIG=false eslint --config .eslintrc.cjs --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",
"start:nextcloud": "node playwright/start-nextcloud-server.mjs"
},
"dependencies": {
"@excalidraw/mermaid-to-excalidraw": "^2.2.2",
"@mdi/js": "^7.4.47",
"@mdi/react": "^1.6.1",
"@mdi/svg": "^7.4.47",
"@nextcloud/auth": "^2.5.3",
"@nextcloud/axios": "^2.5.2",
"@nextcloud/capabilities": "^1.2.1",
"@nextcloud/dialogs": "^6.4.1",
"@nextcloud/event-bus": "^3.3.3",
"@nextcloud/excalidraw": "^0.18.0-bdcb957",
"@nextcloud/files": "^4.0.0",
"@nextcloud/initial-state": "^3.0.0",
"@nextcloud/l10n": "^3.4.1",
"@nextcloud/router": "^3.1.0",
"@nextcloud/sharing": "^0.4.0",
"@nextcloud/vue": "^8.32.0",
"@socket.io/redis-streams-adapter": "^0.3.1",
"@svgmoji/noto": "^3.2.0",
"axios": "^1.14.0",
"dexie": "^4.4.1",
"dotenv": "^17.3.1",
"express": "^5.2.1",
"form-data": "^4.0.5",
"jsonwebtoken": "^9.0.3",
"lodash": "^4.17.23",
"lru-cache": "^11.2.7",
"node-fetch": "^3.3.2",
"persist": "^0.2.7",
"prom-client": "^14.2.0",
"puppeteer-core": "^24.39.1",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"redis": "^4.7.1",
"socket.io": "^4.8.3",
"socket.io-client": "^4.8.3",
"socket.io-prometheus": "^0.4.0",
"svgmoji": "^3.2.0",
"uuid": "^13.0.0",
"vue": "^2.7.16",
"zustand": "^5.0.12"
},
"devDependencies": {
"@nextcloud/browserslist-config": "^3.1.2",
"@nextcloud/e2e-test-server": "^0.4.0",
"@nextcloud/eslint-config": "^8.4.2",
"@nextcloud/stylelint-config": "^3.1.1",
"@nextcloud/vite-config": "^1.6.0",
"@playwright/test": "^1.58.2",
"@types/lodash": "^4.17.24",
"@types/react-dom": "^18.3.5",
"@vitejs/plugin-react": "^5.1.4",
"@vue/tsconfig": "^0.5.1",
"browserslist": "^4.28.1",
"nodemon": "^3.1.14",
"prettier": "^3.8.1",
"redis-memory-server": "^0.16.0",
"stylelint-config-css-modules": "^4.6.0",
"typescript": "^5.9.3",
"typescript-plugin-css-modules": "^5.2.0",
"vite": "^6.4.1",
"vite-plugin-static-copy": "^4.0.0",
"vitest": "^4.1.2"
},
"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",
"import/no-unresolved": [
"error",
{
"ignore": [
"\\.css$"
]
}
]
},
"overrides": [
{
"files": [
"src/components/CreatorMenuItem.tsx"
],
"rules": {
"indent": "off"
}
}
]
},
"redisMemoryServer": {
"disablePostinstall": "1"
},
"engines": {
"node": "^24.0.0",
"npm": "^11.3.0"
}
}