-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
110 lines (110 loc) · 3.86 KB
/
Copy pathpackage.json
File metadata and controls
110 lines (110 loc) · 3.86 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
{
"name": "@cocreate/cocreatews",
"version": "1.0.5",
"description": "Server Side for CoCreateJS. Containing websocket, crud, auth, server side rendering, and permission components.",
"keywords": [
"cocreatews",
"low-code",
"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.3.0",
"@cocreate/authenticate": "^1.10.1",
"@cocreate/authorize": "^1.16.1",
"@cocreate/config": "^1.13.1",
"@cocreate/cron-jobs": "^1.2.0",
"@cocreate/crud-server": "^1.36.1",
"@cocreate/file-server": "^1.18.2",
"@cocreate/industry": "^1.22.2",
"@cocreate/lazy-loader": "^1.23.4",
"@cocreate/metrics": "^1.14.1",
"@cocreate/mongodb": "^1.22.1",
"@cocreate/nginx": "^1.4.0",
"@cocreate/notification": "^1.7.0",
"@cocreate/organizations": "^1.28.3",
"@cocreate/server": "^1.2.0",
"@cocreate/server-side-render": "^1.12.2",
"@cocreate/sitemap": "^1.4.0",
"@cocreate/socket-server": "^1.31.0",
"@cocreate/unique": "^1.20.3",
"@cocreate/url-uploader": "^1.1.1",
"@cocreate/usage": "^1.2.0",
"@cocreate/users": "^1.38.3",
"@cocreate/uuid": "^1.12.1",
"googleapis": "^143.0.0",
"openai": "^4.43.0",
"postmark": "^4.0.2",
"stripe": "^15.5.0"
},
"devDependencies": {
"@cocreate/cli": "^1.51.0",
"css-loader": "^6.8.1",
"webpack": "^5.89.0",
"webpack-cli": "^5.1.4",
"webpack-node-externals": "^3.0.0"
},
"allowScripts": {
"@cocreate/acme@1.3.2": true,
"@cocreate/actions@1.21.4": true,
"@cocreate/api@1.22.5": true,
"@cocreate/authenticate@1.10.2": true,
"@cocreate/authorize@1.16.2": true,
"@cocreate/config@1.13.4": true,
"@cocreate/cron-jobs@1.2.1": true,
"@cocreate/crud-client@1.34.6": true,
"@cocreate/crud-server@1.36.4": true,
"@cocreate/element-prototype@1.31.4": true,
"@cocreate/elements@1.42.9": true,
"@cocreate/file-server@1.19.1": true,
"@cocreate/filter@1.33.6": true,
"@cocreate/indexeddb@1.23.4": true,
"@cocreate/industry@1.22.4": true,
"@cocreate/lazy-loader@1.23.7": true,
"@cocreate/local-storage@1.16.5": true,
"@cocreate/metrics@1.14.2": true,
"@cocreate/mongodb@1.22.2": true,
"@cocreate/nginx@1.4.4": true,
"@cocreate/notification@1.7.2": true,
"@cocreate/observer@1.19.0": true,
"@cocreate/organizations@1.30.1": true,
"@cocreate/render@1.46.1": true,
"@cocreate/server@1.2.1": true,
"@cocreate/server-side-render@1.12.8": true,
"@cocreate/sitemap@1.4.2": true,
"@cocreate/socket-client@1.40.5": true,
"@cocreate/socket-server@1.31.1": true,
"@cocreate/unique@1.20.5": true,
"@cocreate/url-uploader@1.1.2": true,
"@cocreate/usage@1.2.1": true,
"@cocreate/users@1.39.4": true,
"@cocreate/utils@1.42.2": true,
"@cocreate/uuid@1.12.4": true
}
}