forked from ben-pr-p/assemble-online
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
92 lines (92 loc) · 2.66 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
{
"name": "assemble-live",
"version": "0.0.1",
"engines": {
"node": "7.7.2",
"npm": "4.1.2"
},
"description": "online meeting space",
"repository": {
"type": "git",
"url": "https://github.com/assemble-live/assemble.git"
},
"scripts": {
"build": "gulp build",
"bs": "gulp build && node server/index.js",
"server": "node server/index.js",
"start": "node server/index.js",
"worker": "node server/worker/index.js",
"analytics": "node server/analytics/index.js",
"dev": "./node_modules/.bin/nf start --procfile Procfile.dev",
"lint": "./node_modules/.bin/eslint . --ignore-pattern test",
"test": "npm run test-front && npm run test-back",
"test-front": "./node_modules/.bin/wdio wdio.conf.js -n $NUM_BROWSERS",
"test-back": "./node_modules/.bin/mocha server/test/index.js",
"heroku-postbuild": "npm run build"
},
"license": "MIT",
"dependencies": {
"antd": "^2.9.1",
"body-parser": "^1.15.2",
"component-dom": "^1.0.8",
"draft-js": "^0.10.0",
"express": "^4.14.0",
"file-saver": "^1.3.3",
"foreman": "^2.0.0",
"github": "^2.4.1",
"kue": "^0.11.5",
"line-intersect": "^1.0.0",
"monk": "^4.0.0",
"node-getopt": "^0.2.3",
"object-hash": "^1.1.8",
"pug": "^2.0.0-beta5",
"random-string": "^0.1.2",
"react": "^15.5.4",
"react-dom": "^15.5.4",
"redis": "^2.6.3",
"rollupify": "^0.3.8",
"shallow-compare": "^1.2.1",
"simple-peer": "^6.0.7",
"socket.io": "^1.4.8",
"socket.io-client": "^1.4.8",
"socketio-wildcard": "^0.3.0",
"store": "^1.3.20",
"superagent": "^3.3.2",
"to-title-case": "^1.0.0",
"ua-parser-js": "^0.7.12",
"webcamjs": "^1.0.21",
"webdriverrtc": "^1.0.0",
"wildcards": "^1.0.2"
},
"devDependencies": {
"ajv-pack": "^0.2.7",
"babel-eslint": "^7.1.1",
"babel-plugin-import": "^1.1.1",
"babel-plugin-transform-class-properties": "^6.19.0",
"babel-plugin-transform-object-rest-spread": "^6.19.0",
"babel-preset-es2015": "^6.5.0",
"babel-preset-react": "^6.5.0",
"babelify": "^7.2.0",
"blue-tape": "^1.0.0",
"browserify": "^13.0.0",
"chai": "^3.5.0",
"cssify": "^1.0.3",
"eslint": "^3.10.2",
"eslint-plugin-react": "^6.7.1",
"exec": "^0.2.1",
"gulp": "^3.9.1",
"gulp-bro": "^0.3.1",
"gulp-changed": "^1.3.0",
"gulp-empty": "^0.1.1",
"gulp-imagemin": "^2.4.0",
"gulp-notify": "^2.2.0",
"gulp-stylus": "^2.3.0",
"gulp-uglify": "^2.0.0",
"gulp-util": "^3.0.7",
"mocha": "^3.2.0",
"wdio": "^0.3.3",
"wdio-mocha-framework": "^0.5.7",
"wdio-spec-reporter": "0.0.4",
"why-did-you-update": "0.0.8"
}
}