This repository has been archived by the owner on Apr 29, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
110 lines (110 loc) · 3.39 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
103
104
105
106
107
108
109
110
{
"name": "VideoJam",
"version": "1.0.0",
"description": "A desktop application to efficiently create social videos.",
"main": "main.js",
"scripts": {
"start": "NODE_ENV=DEV concurrently \"babel-node server.js\" \"sleep 2 && electron .\"",
"bundle": "webpack",
"watch": "NODE_ENV=DEV babel-node server.js",
"start:prod": "webpack && electron ."
},
"build": {
"appId": "edu.northwestern.knightlab.VideoJam",
"productName": "VideoJam",
"copyright": "Copyright © 2017 Northwestern University Knight Lab",
"asar": false,
"files": [
"node_modules/ffmpeg-static/bin/${os}/${arch}/ffmpeg",
"node_modules/ffmpeg-static/index.js",
"node_modules/ffmpeg-static/package.json",
"node_modules/ffprobe-static/bin/${os}/${arch}/ffmpeg",
"node_modules/ffprobe-static/index.js",
"node_modules/ffprobe-static/package.json"
],
"mac": {
"category": "public.app-category.productivity",
"files": [
"!node_modules/ffmpeg-static/bin/win${/*}",
"!node_modules/ffmpeg-static/bin/linux${/*}",
"!node_modules/ffprobe-static/bin/win${/*}",
"!node_modules/ffprobe-static/bin/linux${/*}"
]
},
"linux": {
"category": "",
"packageCategory": "GNOME;GTK;VideoEditing",
"description": "VideoJam Desktop Client for Linux",
"target": [
"deb",
"zip",
"AppImage",
"rpm"
],
"maintainer": "Northwestern University Knight Lab",
"files": [
"!node_modules/ffmpeg-static/bin/linux/ia32${/*}",
"!node_modules/ffmpeg-static/bin/win${/*}",
"!node_modules/ffmpeg-static/bin/mac${/*}",
"!node_modules/ffprobe-static/bin/linux/ia32${/*}",
"!node_modules/ffprobe-static/bin/win${/*}",
"!node_modules/ffprobe-static/bin/mac${/*}"
]
},
"deb": {
"synopsis": "VideoJam Desktop App"
},
"win": {
"target": "nsis",
"icon": "build/icon.ico",
"files": [
"node_modules/ffmpeg-static/bin/win/${arch}/ffmpeg",
"!node_modules/ffmpeg-static/bin/win/ia32${/*}",
"!node_modules/ffmpeg-static/bin/linux${/*}",
"!node_modules/ffmpeg-static/bin/mac${/*}"
]
},
"nsis": {
"perMachine": true,
"oneClick": false
}
},
"repository": "https://github.com/NUKnightLab/videojam",
"keywords": [],
"author": "Northwestern University Knight Lab",
"license": "CC0-1.0",
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-loader": "^7.1.2",
"babel-polyfill": "^6.26.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babel-preset-react-hmre": "^1.1.1",
"concurrently": "^3.5.0",
"css-loader": "^0.28.8",
"electron": "^1.7.11",
"electron-builder": "^19.45.5",
"electron-packager": "^9.1.0",
"electron-rebuild": "^1.6.0",
"express": "^4.16.2",
"html-webpack-plugin": "^2.30.1",
"json-loader": "^0.5.7",
"style-loader": "^0.19.1",
"url-loader": "^0.6.2",
"webpack": "^3.8.1",
"webpack-dev-middleware": "^1.12.0",
"webpack-hot-middleware": "^2.20.0"
},
"dependencies": {
"ffmpeg-static": "^2.0.0",
"ffprobe-static": "^2.0.0",
"file-system": "^2.2.2",
"fluent-ffmpeg": "^2.1.2",
"os-homedir": "^1.0.2",
"path": "^0.12.7",
"react": "^16.1.1",
"react-dom": "^16.1.1",
"react-dropzone": "^4.2.8"
}
}