-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
87 lines (87 loc) · 3.14 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
{
"name": "onlyoffice-confluence-cloud",
"description": "Confluence ONLYOFFICE integration app allows you to work on all kinds of office documents within Confluence using ONLYOFFICE Online Editors with the enhanced formatting toolset. View and co-edit the documents in real-time.",
"version": "1.2.0",
"author": "Ascensio System SIA",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "git+https://github.com/ONLYOFFICE/onlyoffice-confluence-cloud.git"
},
"bugs": {
"url": "https://github.com/ONLYOFFICE/onlyoffice-confluence-cloud/issues"
},
"homepage": "https://github.com/ONLYOFFICE/onlyoffice-confluence-cloud",
"externals": {
"react": "React",
"react-dom": "ReactDOM"
},
"type": "module",
"scripts": {
"build-jsx-browser": "parcel build --log-level 1 --global __root_component --out-dir views views/*.jsx",
"build-jsx-node": "parcel build --log-level 1 --no-minify --target node --out-dir views/node views/*.jsx",
"build": "concurrently -i 'npm:build-*'",
"start": "node --es-module-specifier-resolution=node app.js",
"watch-server": "nodemon --es-module-specifier-resolution=node -e js app.js",
"watch-jsx-browser": "parcel watch --log-level 1 --no-hmr --global __root_component --out-dir views views/*.jsx",
"watch-jsx-node": "parcel watch --log-level 1 --target node --out-dir views/node views/*.jsx",
"watch-jsx": "concurrently 'npm:watch-jsx-browser' 'npm:watch-jsx-node'",
"watch": "concurrently -i 'npm:watch-server' 'npm:watch-jsx-browser' 'npm:watch-jsx-node'",
"lint": "eslint app.js server-side-rendering.js routes helpers views/**/*.jsx"
},
"dependencies": {
"@atlaskit/button": "^20.2.5",
"@atlaskit/section-message": "^6.6.5",
"@atlaskit/modal-dialog": "^12.17.6",
"@atlaskit/primitives": "^12.2.5",
"@atlaskit/form": "^10.5.7",
"@atlaskit/textfield": "^6.5.3",
"@atlaskit/image": "^1.3.2",
"@atlaskit/tokens": "^2.0.3",
"@atlaskit/spinner": "^16.3.2",
"@onlyoffice/document-editor-react": "^1.5.1",
"atlassian-connect-express": "^11.4.1",
"atlassian-jwt": "^2.0.3",
"axios": "^1.7.7",
"body-parser": "^1.20.3",
"compression": "^1.7.4",
"cookie-parser": "^1.4.7",
"dotenv": "^16.4.5",
"errorhandler": "^1.5.1",
"esm": "^3.2.25",
"express": "^4.21.1",
"express-hbs": "^2.5.0",
"helmet": "^8.0.0",
"i18n": "^0.15.1",
"json5": "^2.2.3",
"morgan": "^1.10.0",
"nocache": "^4.0.0",
"pg": "^8.13.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"sequelize": "^6.37.4",
"styled-components": "^6.1.13"
},
"devDependencies": {
"@babel/core": "^7.25.8",
"babel-plugin-styled-components": "^2.1.4",
"concurrently": "^9.0.1",
"eslint": "^9.12.0",
"eslint-plugin-react": "^7.37.1",
"longjohn": "^0.2.12",
"ngrok": "^4.3.3",
"nodemon": "^3.1.7",
"parcel-bundler": "^1.12.5",
"parcel-plugin-externals": "^0.5.2",
"sqlite3": "^5.1.7"
},
"overrides": {
"braces": "3.0.3",
"micromatch": "4.0.8",
"node-forge": "1.3.1",
"nth-check": "2.1.1",
"postcss": "8.4.47",
"tough-cookie": "5.0.0",
"terser": "4.8.1"
}
}