forked from RocketChat/Rocket.Chat
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
81 lines (81 loc) · 2.07 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": "Rocket.Chat",
"description": "The Ultimate Open Source WebChat Platform",
"version": "0.56.0-develop",
"author": {
"name": "Rocket.Chat",
"url": "https://rocket.chat/"
},
"contributors": [{
"name": "Aaron Ogle",
"email": "[email protected]"
}, {
"name": "Bradley Hilton",
"email": "[email protected]"
}, {
"name": "Diego Sampaio",
"email": "[email protected]"
}, {
"name": "Gabriel Engel",
"email": "[email protected]"
}, {
"name": "Marcelo Schmidt",
"email": "[email protected]"
}, {
"name": "Rodrigo Nascimento",
"email": "[email protected]"
}, {
"name": "Sing Li",
"email": "[email protected]"
}],
"keywords": [
"rocketchat",
"rocket",
"chat"
],
"scripts": {
"start": "meteor npm i && meteor",
"lint": "eslint .",
"lint-fix": "eslint . --fix",
"stylelint": "stylelint **/*.less",
"test": "node .scripts/start.js",
"deploy": "npm run build && pm2 startOrRestart pm2.json",
"chimp-watch": "chimp --ddp=http://localhost:3000 --watch --mocha --path=tests/end-to-end",
"chimp-test": "chimp tests/chimp-config.js",
"postinstall": "cd packages/rocketchat-katex && npm i",
"version": "node .scripts/version.js",
"release": "npm run version && conventional-changelog --config .github/changelog.js -i HISTORY.md -s"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/RocketChat/Rocket.Chat.git"
},
"bugs": {
"url": "https://github.com/RocketChat/Rocket.Chat/issues",
"email": "[email protected]"
},
"devDependencies": {
"chimp": "^0.47.2",
"eslint": "^3.19.0",
"stylelint": "^7.10.1",
"supertest": "^3.0.0",
"conventional-changelog": "^1.1.3"
},
"dependencies": {
"babel-runtime": "^6.23.0",
"bcrypt": "^1.0.2",
"codemirror": "^5.25.0",
"file-type": "^4.2.0",
"highlight.js": "^9.10.0",
"jquery": "^3.2.1",
"mime-db": "^1.27.0",
"mime-type": "^3.0.4",
"moment": "^2.18.1",
"moment-timezone": "^0.5.13",
"photoswipe": "^4.1.1",
"prom-client": "^8.0.0",
"semver": "^5.3.0",
"toastr": "^2.1.2"
}
}