forked from RocketChat/Rocket.Chat.Electron
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
101 lines (101 loc) · 2.95 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
93
94
95
96
97
98
99
100
101
{
"name": "rocketchat",
"description": "Official OSX, Windows, and Linux Desktop Clients for Rocket.Chat",
"version": "2.18.0-develop",
"author": "Rocket.Chat Support <[email protected]>",
"copyright": "© 2016-2020, Rocket.Chat",
"homepage": "https://rocket.chat",
"license": "MIT",
"keywords": [
"rocketchat",
"desktop",
"electron"
],
"repository": {
"type": "git",
"url": "git+https://github.com/RocketChat/Rocket.Chat.Electron.git"
},
"bugs": {
"url": "https://github.com/RocketChat/Rocket.Chat.Electron/issues"
},
"main": "app/main.js",
"scripts": {
"postinstall": "electron-builder install-app-deps",
"start": "gulp start",
"test": "gulp test",
"release": "gulp release",
"icons": "gulp icons",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s",
"eslint": "eslint src gulpfile.js"
},
"dependencies": {
"@bugsnag/js": "^6.3.2",
"@emotion/core": "^10.0.27",
"@emotion/styled": "^10.0.27",
"@felixrieseberg/spellchecker": "^4.0.12",
"@rocket.chat/icons": "^0.2.0-alpha.23",
"debug": "^4.1.1",
"electron-fetch": "^1.4.0",
"electron-reload": "^1.5.0",
"electron-updater": "^4.0.6",
"i18next": "^19.0.0",
"i18next-node-fs-backend": "^2.1.1",
"mem": "^6.0.0",
"react": "^16.12.0",
"react-dom": "^16.12.0",
"react-i18next": "^11.3.1",
"react-redux": "^7.1.3",
"redux": "^4.0.5",
"redux-saga": "^1.1.3",
"rimraf": "^3.0.1"
},
"devDependencies": {
"@babel/core": "^7.6.3",
"@babel/plugin-proposal-class-properties": "^7.5.5",
"@babel/plugin-proposal-function-bind": "^7.2.0",
"@babel/preset-env": "^7.6.3",
"@babel/preset-react": "^7.8.3",
"@fiahfy/icns-convert": "^0.0.8",
"@rocket.chat/eslint-config": "^0.4.0",
"@rocket.chat/fuselage": "^0.2.0-dev.97",
"@rocket.chat/fuselage-hooks": "^0.2.0-dev.94",
"babel-eslint": "^10.0.3",
"builtin-modules": "^3.0.0",
"chai": "^4.2.0",
"chai-string": "^1.5.0",
"conventional-changelog-cli": "^2.0.11",
"convert-svg-to-png": "^0.5.0",
"debug": "^4.1.1",
"electron": "^7.1.1",
"electron-builder": "^22.1.0",
"electron-mocha": "^8.0.1",
"electron-notarize": "^0.2.0",
"eslint": "^6.5.1",
"eslint-plugin-import": "^2.17.2",
"eslint-plugin-react": "^7.18.0",
"eslint-plugin-react-hooks": "^2.3.0",
"glob": "^7.1.6",
"gulp": "^4.0.0",
"gulp-cli": "^2.0.1",
"gulp-execa": "^2.0.0",
"mocha": "^7.0.1",
"rollup": "^1.1.0",
"rollup-plugin-babel": "^4.3.3",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-copy": "^3.3.0",
"rollup-plugin-json": "^4.0.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-replace": "^2.1.0",
"to-ico": "^1.1.5",
"xvfb-maybe": "^0.2.1"
},
"engines": {
"node": ">=10.16.x"
},
"devEngines": {
"node": ">=10.16.x",
"npm": ">=6.9.x",
"yarn": ">=1.17.x"
},
"productName": "Rocket.Chat"
}