forked from RocketChat/Rocket.Chat.Electron
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
79 lines (79 loc) · 2.34 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
{
"name": "rocketchat",
"productName": "Rocket.Chat",
"description": "Rocket.Chat Native Cross-Platform Desktop Application via Electron.",
"version": "2.16.0-develop",
"author": "Rocket.Chat Support <[email protected]>",
"copyright": "© 2019, Rocket.Chat",
"homepage": "https://rocket.chat",
"license": "MIT",
"main": "app/main.js",
"repository": {
"type": "git",
"url": "https://github.com/RocketChat/Rocket.Chat.Electron.git"
},
"scripts": {
"postinstall": "electron-builder install-app-deps",
"gulp": "gulp",
"start": "gulp start",
"icons": "gulp icons",
"changelog": "conventional-changelog --config .github/changelog.js -i HISTORY.md -s",
"release": "gulp release --env=production",
"release-dev": "gulp release --env=development",
"eslint": "eslint src",
"stylelint": "stylelint 'src/**/*.css' 'src/**/*.less'",
"test": "gulp test",
"coverage": "gulp coverage",
"e2e": "gulp e2e"
},
"dependencies": {
"@paulcbetts/system-idle-time": "^1.0.4",
"electron-updater": "^4.0.6",
"fs-jetpack": "^2.2.0",
"i18next": "^15.0.4",
"i18next-node-fs-backend": "^2.1.1",
"i18next-sync-fs-backend": "^1.1.0",
"mem": "^4.1.0",
"spellchecker": "^3.5.0"
},
"devDependencies": {
"@fiahfy/icns-convert": "^0.0.5",
"@rocket.chat/eslint-config": "^0.2.0",
"builtin-modules": "^3.0.0",
"chai": "^4.2.0",
"conventional-changelog-cli": "^2.0.11",
"convert-svg-to-png": "^0.5.0",
"electron": "^4.0.1",
"electron-builder": "^20.38.4",
"electron-mocha": "^8.0.1",
"eslint": "^5.12.0",
"gulp": "^4.0.0",
"gulp-cli": "^2.0.1",
"gulp-less": "^4.0.1",
"gulp-plumber": "^1.2.0",
"gulp-rename": "^1.4.0",
"gulp-util": "^3.0.8",
"minimist": "^1.2.0",
"mocha": "^6.0.1",
"npm-run-all": "^4.1.3",
"nyc": "^14.0.0",
"rollup": "^1.1.0",
"rollup-plugin-commonjs": "^9.2.0",
"rollup-plugin-istanbul": "^2.0.1",
"rollup-plugin-json": "^4.0.0",
"rollup-plugin-node-resolve": "^4.0.0",
"rollup-plugin-replace": "^2.1.0",
"run-sequence": "^2.2.1",
"sinon": "^7.2.2",
"spectron": "^5.0.0",
"stylelint": "^10.0.1",
"stylelint-order": "^2.0.0",
"to-ico": "^1.1.5",
"xvfb-maybe": "^0.2.1"
},
"devEngines": {
"node": ">=8.12.x",
"npm": ">=4.x",
"yarn": ">=0.21.3"
}
}