-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
81 lines (81 loc) · 2.67 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
{
"name": "@cocreate/cocreatews",
"version": "1.0.2",
"description": "Server Side for CoCreateJS. Containing websocket, crud, auth, server side rendering, and permission components.",
"keywords": [
"cocreatews",
"cocreate",
"low-code-framework",
"no-code-framework",
"cocreatejs",
"cocreatejs-component",
"cocreate-framework",
"no-code",
"low-code",
"collaborative-framework",
"realtime",
"realtime-framework",
"collaboration",
"shared-editing",
"html5-framework",
"javascript-framework"
],
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/CoCreate-app/CoCreateWS.git"
},
"author": "CoCreate LLC",
"license": "AGPL-3.0",
"bugs": {
"url": "https://github.com/CoCreate-app/CoCreateWS/issues"
},
"homepage": "https://cocreate.app/docs/CoCreateWS",
"main": "./src/server.js",
"scripts": {
"build": "webpack --config webpack.config.js",
"start": "node src/server.js",
"dev": "nodemon src/server.js",
"test": "echo \"Error: no test specified\" && exit 1",
"postinstall": "node -e \"const { execSync } = require('child_process'); try { execSync('coc --version', { stdio: 'ignore' }); } catch (error) { try { execSync('npm install -g @cocreate/cli', { stdio: 'inherit' }); console.log('Installed \"@cocreate/cli\" globally.'); } catch (error) { console.error('Failed to install \"@cocreate/cli\" globally:', error); } }\"",
"createdb": "node ./installation/createDB.js"
},
"dependencies": {
"@cocreate/acme": "^1.2.12",
"@cocreate/authenticate": "^1.9.2",
"@cocreate/authorize": "^1.14.1",
"@cocreate/config": "^1.12.5",
"@cocreate/cron-jobs": "^1.0.0",
"@cocreate/crud-server": "^1.34.8",
"@cocreate/file-server": "^1.16.7",
"@cocreate/industry": "^1.21.4",
"@cocreate/lazy-loader": "^1.20.2",
"@cocreate/metrics": "^1.13.2",
"@cocreate/mongodb": "^1.18.2",
"@cocreate/nginx": "^1.3.5",
"@cocreate/notification": "^1.6.4",
"@cocreate/organizations": "^1.27.4",
"@cocreate/server": "^1.1.6",
"@cocreate/server-side-render": "^1.10.3",
"@cocreate/sitemap": "^1.3.0",
"@cocreate/socket-server": "^1.29.3",
"@cocreate/unique": "^1.19.6",
"@cocreate/url-uploader": "^1.0.0",
"@cocreate/usage": "^1.1.2",
"@cocreate/users": "^1.37.1",
"@cocreate/uuid": "^1.11.4",
"googleapis": "^143.0.0",
"openai": "^4.43.0",
"postmark": "^4.0.2",
"stripe": "^15.5.0"
},
"devDependencies": {
"@cocreate/cli": "^1.47.6",
"css-loader": "^6.8.1",
"webpack": "^5.89.0",
"webpack-cli": "^5.1.4",
"webpack-node-externals": "^3.0.0"
}
}