forked from rsimmons/voracious
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.53 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
{
"name": "Voracious",
"description": "A video player for studying foreign languages (esp. Japanese)",
"author": "Russel Simmons",
"license": "MIT",
"repository": "rsimmons/voracious",
"private": true,
"dependencies": {
"diff-match-patch": "^1.0.0",
"franc": "^4.0.0",
"iconv-lite": "^0.4.24",
"immutable": "^3.8.1",
"jschardet": "^1.6.0",
"jszip": "^3.1.5",
"react": "^16.4.2",
"react-autosize-textarea": "^4.0.0",
"react-dom": "^16.4.2",
"react-router-dom": "^4.1.2",
"react-router-scroll-4": "^1.0.0-beta.2",
"react-scripts": "1.1.4",
"webvtt-parser": "annevk/webvtt"
},
"devDependencies": {
"cross-env": "^5.0.5",
"electron": "^2.0.7",
"electron-builder": "^20.28.2",
"electron-rebuild": "^1.6.0",
"png2icons": "^1.0.1"
},
"homepage": ".",
"main": "src/electron-starter.js",
"scripts": {
"react-start": "cross-env BROWSER=none react-scripts start",
"react-build": "react-scripts build",
"electron-start": "cross-env NODE_ENV=development ELECTRON_START_URL=http://localhost:3000 electron app",
"rebuild-native": "electron-rebuild --module-dir app -f",
"build-icons": "png2icons buildResources/icon.png buildResources/icon -all",
"dist": "electron-builder",
"dist-nopack": "electron-builder -c.mac.target=dir -c.win.target=dir -c.linux.target=dir",
"force-rebuild-pages": "git commit -m 'force rebuild of GH pages' --allow-empty && git push",
"test": "react-scripts test --env=jsdom",
"eject": "react-scripts eject"
}
}