forked from AGProjects/sylk-webrtc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
102 lines (102 loc) · 2.52 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
102
{
"name": "Sylk",
"version": "1.0.1",
"license": "AGPLv3",
"private": true,
"devDependencies": {
"animate.css": "^3.5.2",
"autocomplete.js": "^0.20.1",
"babel-eslint": "^6.1.2",
"babel-plugin-transform-class-properties": "^6.10.2",
"babel-preset-es2015": "^6.9.0",
"babel-preset-react": "^6.5.0",
"babelify": "^7.3.0",
"bootstrap-css-only": "^3.3.6",
"bowser": "^1.4.5",
"browser-sync": "^2.13.0",
"browserify": "13.0.1",
"classnames": "^2.2.5",
"debug": "*",
"electron": "1.4.2",
"electron-builder": "^7.11.4",
"envify": "^3.4.1",
"eslint": "^2.13.1",
"eslint-plugin-react": "^5.2.2",
"fontawesome-actions": "^0.9.0",
"gulp": "~3.9.1",
"gulp-autoprefixer": "^3.1.1",
"gulp-clean-css": "^2.0.10",
"gulp-concat": "*",
"gulp-if": "*",
"gulp-notify": "^2.2.0",
"gulp-sass": "^2.3.2",
"gulp-server-livereload": "^1.9.2",
"gulp-sourcemaps": "1.6.0",
"gulp-uglify": "1.5.4",
"gulp-useref": "3.1.0",
"gulp-util": "~3.0.7",
"hark": "^1.1.3",
"lazypipe": "^1.0.1",
"localforage": "^1.4.2",
"moment": "^2.13.0",
"moment-duration-format": "^1.3.0",
"node-sass": "^3.8.0",
"node-uuid": "^1.4.7",
"notifyjs": "^2.0.3",
"react": "^15.1.0",
"react-addons-css-transition-group": "^15.1.0",
"react-bootstrap": "^0.29.5",
"react-dom": "^15.1.0",
"react-mini-router": "^2.0.0",
"react-mixin": "^3.0.5",
"react-notification-system": "^0.2.7",
"require-dir": "^0.3.0",
"rtcninja": "^0.6.8",
"sass-lint": "^1.8.2",
"screenfull": "^3.0.0",
"superagent": "^2.0.0",
"sylkrtc": "git+https://github.com/AGProjects/sylkrtc.js.git",
"underscore": "1.8.3",
"vinyl-buffer": "1.0.0",
"vinyl-source-stream": "1.1.0",
"watchify": "~3.7.0"
},
"engines": {
"node": ">=4.0.0"
},
"scripts": {
"postinstall": "install-app-deps",
"start": "electron ./app",
"build-osx": "build --osx --x64",
"build-win": "build --win --ia32 --x64",
"build-linux": "build --linux --ia32 --x64"
},
"directories": {
"output": "dist-electron"
},
"build": {
"appId": "com.agprojects.Sylk",
"productName": "Sylk",
"mac": {
"category": "public.app-category.video",
"target": [
"dmg"
]
},
"win": {
"target": [
"nsis"
],
"signingHashAlgorithms": []
},
"nsis": {
"oneClick": true,
"perMachine": false
},
"linux": {
"target": [
"AppImage"
]
}
}
}