This repository has been archived by the owner on Jan 4, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
117 lines (117 loc) · 2.98 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
111
112
113
114
115
116
117
{
"name": "autographa-live",
"description": "A Bible translation editor for everyone. Now live.",
"version": "0.2.1-beta.1",
"main": "public/electron.js",
"author": "Friends of Agape <mathew.joel@protonmail.com>",
"license": "GPL-3.0",
"homepage": ".",
"dependencies": {
"@craco/craco": "5.6.2",
"@material-ui/core": "^4.9.10",
"@material-ui/icons": "^4.2.1",
"@material-ui/lab": "^4.0.0-alpha.56",
"axios": "^0.18.0",
"bootstrap": "^4.3.1",
"customize-cra": "^0.2.12",
"diff-match-patch": "^1.0.0",
"font-list": "^1.2.11",
"jquery": "^3.3.1",
"leveldown": "^5.0.0-2",
"localforage": "^1.7.3",
"material-ui": "^0.20.2",
"mobx": "^3.1.9",
"mobx-react": "^4.1.8",
"pouchdb": "^7.1.1",
"pouchdb-quick-search": "^1.3.0",
"react": "^16.8.4",
"react-audio-player": "^0.17.0",
"react-bootstrap": "^0.32.1",
"react-bootstrap-slider": "^2.1.5",
"react-contextmenu": "^2.13.0",
"react-detect-offline": "^2.4.0",
"react-dom": "^16.8.4",
"react-h5-audio-player": "1.2.1",
"react-intl": "^2.8.0",
"react-mic-plus": "1.3.1",
"react-scripts": "3.0.1",
"request-promise": "^4.2.2",
"rtl-detect": "^1.0.0",
"string-punctuation-tokenizer": "^2.0.0-beta.2",
"sweetalert": "^2.1.0",
"tmp": "0.0.33",
"transform-runtime": "0.0.0",
"translation-helps-patch": "0.1.16",
"typescript": "^3.4.3",
"usfm-js": "^1.0.12",
"xml2js": "^0.4.22",
"yaml": "^1.7.2"
},
"build": {
"extends": "react-cra",
"appId": "oa.autographa.live",
"files": [
"build/**/*.*",
"public/**/*.*",
"node_modules/**/*",
"src/**/*.*",
"patterns.prop"
],
"directories": {
"buildResources": "resources"
},
"mac": {
"category": "public.app-category.Utilities",
"target": "dmg",
"icon": "resources/icon.icns",
"type": "distribution"
},
"linux": {
"target": [
"deb"
],
"icon": "resources/icon.png"
},
"publish": null
},
"keywords": [
"Desktop",
"Bible Editor",
"USFM",
"USFM Editor",
"React.js",
"Translation",
"Open Source"
],
"scripts": {
"start": "concurrently \"npm run react-start\" \"wait-on http://localhost:3000/ && cross-env NODE_ENV=development npm run electron-start\"",
"build": "npm run build:electron",
"electron-start": "electron .",
"electron-build": "electron-packager ./build --out=dist",
"react-start": "craco start",
"react-build": "react scripts build",
"test": "craco test",
"eject": "react-scripts eject",
"build:electron": "craco build --config craco.config.js main=build/electron.js",
"preelectron-pack": "npm run build",
"electron-pack": "electron-builder build -p never"
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
],
"devDependencies": {
"@rescripts/cli": "0.0.10",
"@rescripts/rescript-env": "0.0.10",
"babel-plugin-react-intl": "^3.0.1",
"concurrently": "^4.1.0",
"cross-env": "^5.2.0",
"electron": "^6.0.9",
"electron-builder": "^21.2.0",
"electron-packager": "^13.1.1",
"electron-rebuild": "^1.8.4",
"wait-on": "^3.2.0"
}
}