-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
115 lines (115 loc) · 3.19 KB
/
package.json
File metadata and controls
115 lines (115 loc) · 3.19 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
111
112
113
114
115
{
"name": "shriming-chat",
"author": "shriming@shri2015.ru",
"url": "https://github.com/shriming/chat/issues",
"repository": {
"type": "git",
"url": "git@github.com:shriming/chat.git"
},
"license": "MIT",
"private": true,
"version": "0.1.0",
"description": "Multi-user & multi-channel chat integrated with Slack using webRTC and socket.io",
"keywords": [
"shri",
"chat",
"webRTC",
"Slack"
],
"contributors": [
"Anikeychik Dmitry",
"Berezhnoy Sergey",
"Borodin Denis",
"Borodin Maxim",
"Chudinov Alexey",
"Kholodnyak Maksim",
"Loginevsky Vasily",
"Malakhov Yuri"
],
"dependencies": {
"bcryptjs": "^2.1.0",
"bem-environ": "^1.4.0",
"borschik-tech-cleancss": "^2.0.1",
"bower": "^1.3.9",
"browser-sync": "^2.9.3",
"connect-mongo": "^0.8.2",
"ejs": "~0.8.4",
"enb": "0.17.0",
"enb-autoprefixer": "^0.1.1",
"enb-bem": "0.1.0-beta2",
"enb-bem-specs": "^0.6.0",
"enb-bemxjst": "^1.3.2",
"enb-borschik": "^1.1.1",
"enb-diverse-js": "^0.1.0",
"enb-magic-factory": "^0.4.4",
"enb-modules": "^0.2.0",
"enb-stylus": "1.1.2",
"gm": "^1.17.0",
"gulp": "^3.9.0",
"gulp-flatten": "^0.2.0",
"gulp-if": "^2.0.0",
"gulp-minify-css": "^1.2.1",
"gulp-replace-path": "^0.4.0",
"gulp-shell": "^0.4.3",
"html": "0.0.7",
"lodash": "^3.10.1",
"nodemon": "^1.5.1",
"passport": "^0.2.1",
"passport-facebook": "^1.0.3",
"passport-local": "^1.0.0",
"passport-remember-me": "0.0.1",
"passport-slack": "0.0.4",
"passport-vkontakte": "^0.3.0",
"rc": "~0.5.0",
"run-sequence": "^1.1.2",
"sails": "~0.11.0",
"sails-disk": "~0.10.0",
"sails-generate-auth": "^0.2.0",
"sails-hook-bem-render": "^1.1.0",
"sails-hook-dev": "^0.2.2",
"sails-hook-seed": "^0.1.1",
"sails-mongo": "^0.10.4",
"sails-postgresql": "^0.10.16",
"sails-test-helper": "^0.4.1",
"slack-node": "^0.1.3",
"validator": "^3.22.1",
"vow": "^0.4.5",
"yargs": "^3.25.0",
"ym": "^0.1.0"
},
"devDependencies": {
"bem": "^0.10.1",
"bower-npm-install": "^0.5.9",
"csscomb": "^3.1.8",
"enb-bem-techs": "^2.0.1",
"faker": "^2.1.2",
"git-hooks": "^1.0.0",
"grunt": "^0.4.5",
"gulp-jshint": "^1.11.2",
"gulp-stylint": "^2.0.0",
"jscs": "^1.11.2",
"jscs-bem": "^0.2.0",
"jshint": "2.6.0",
"jshint-groups": "^0.8.0",
"jshint-stylish": "^2.0.1",
"stylint": "^1.2.3"
},
"scripts": {
"specs": "enb make specs -d frontend",
"test": "gulp lint",
"postinstall": "./node_modules/bower/bin/bower install",
"start": "npm run deps",
"debug": "node debug app.js",
"init": "npm run deps && npm run make-views",
"deps": "npm i && ./node_modules/.bin/bower i",
"make-views": "npm run views-compile && gulp copy-files",
"views-compile": "./node_modules/.bin/enb make -d frontend --no-cache",
"copy-views": "npm run copy-css && npm run copy-js",
"copy-css": "cp frontend/desktop.bundles/merged/_merged.css frontend/static/css/",
"copy-js": "cp frontend/desktop.bundles/merged/_merged.js frontend/static/js/"
},
"main": "app.js",
"engines": {
"node": "4.2.1"
}
}