forked from oTranscribe/oTranscribe
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
83 lines (82 loc) · 2.22 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
{
"name": "oTranscribeElectron",
"version": "1.1.0",
"main": "electron/main.js",
"scripts": {
"postinstall": "cd ./node_modules/jakecache/ && npm install && node ./scripts/build.js && cd ../..",
"build": "make build_prod",
"pack:mac": "npm run build && build --dir --mac --x64",
"build:mac": "npm run build && build --mac --x64",
"start": "electron ."
},
"build": {
"appId": "org.otranscribe.otranscribe-electron",
"dmg": {
"contents": [
{
"x": 110,
"y": 150
},
{
"x": 240,
"y": 150,
"type": "link",
"path": "/Applications"
}
]
},
"linux": {
"target": [
"AppImage",
"deb"
]
},
"win": {
"target": "squirrel",
"icon": "build/icon.ico"
}
},
"devDependencies": {
"babel-core": "^6.24.1",
"babel-eslint": "^4.1.3",
"babel-loader": "^6.4.1",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-2": "^6.0.0",
"chai": "^3.5.0",
"copy-webpack-plugin": "^3.0.1",
"css-loader": "^0.23.1",
"electron-builder": "^19.16.2",
"eslint": "^1.7.3",
"extract-text-webpack-plugin": "^2.0.0-beta.4",
"html-loader": "^0.4.3",
"html-webpack-plugin": "^2.22.0",
"json-loader": "^0.5.3",
"karma": "^0.13.22",
"karma-chrome-launcher": "^0.2.2",
"karma-mocha": "^0.2.2",
"karma-nyan-reporter": "^0.2.3",
"karma-sourcemap-loader": "^0.3.7",
"karma-webpack": "^1.7.0",
"mocha": "^2.4.5",
"node-sass": "^3.4.2",
"raw-loader": "^0.5.1",
"sass-loader": "^3.2.0",
"webpack": "^2.1.0-beta.5",
"webpack-dev-server": "^2.0.0-beta"
},
"dependencies": {
"jakecache": "https://github.com/kenchris/jakecache/archive/v1.1.1.tar.gz",
"jquery": "^3.1.0",
"keycode": "^2.1.8",
"local-storage-manager": "git://github.com/ejb/localStorageManager.git",
"mousetrap": "^1.6.0",
"mustache": "^2.2.1",
"preact": "^8.1.0",
"progressor": "git://github.com/ejb/progressor.js.git",
"progressor.js": "git://github.com/ejb/progressor.js.git",
"sanitize-html": "^1.13.0",
"to-markdown": "^3.0.3",
"webl10n": "^1.0.0"
}
}