This repository was archived by the owner on May 26, 2023. It is now read-only.
forked from Ashersam/Test-Autographa
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
121 lines (121 loc) · 3.11 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
118
119
120
121
{
"name": "autographa-lite",
"description": "A Bible translation editor for everyone.",
"version": "2.0.6",
"main": "public/electron.js",
"author": "Friends of Agape <[email protected]>",
"license": "MIT",
"homepage": ".",
"dependencies": {
"@craco/craco": "^3.6.0",
"@material-ui/core": "^4.2.0",
"@material-ui/icons": "^4.2.1",
"chai-as-promised": "^7.1.1",
"customize-cra": "^0.2.12",
"diff-match-patch": "^1.0.0",
"electron-squirrel-startup": "^1.0.0",
"electron-updater": "^4.2.0",
"electron-log": "4.0.2",
"fs-jetpack": "^1.0.0",
"jquery": "^3.3.1",
"leveldown": "^5.0.0-2",
"material-ui": "^0.20.2",
"mobx": "^3.1.9",
"mobx-react": "^4.1.8",
"pouchdb": "^7.1.1",
"pouchdb-quick-search": "^1.3.0",
"prop-types": "^15.5.10",
"react": "^16.8.6",
"react-addons-css-transition-group": "^15.6.2",
"react-addons-shallow-compare": "^15.5.2",
"react-bootstrap": "^0.32.1",
"react-bootstrap-slider": "^2.1.5",
"react-dom": "^16.8.6",
"react-intl": "^2.4.0",
"react-scripts": "3.2.0",
"rtl-detect": "^1.0.0",
"string-punctuation-tokenizer": "^2.0.0-beta.2",
"sweetalert": "^2.1.0",
"sweetalert-react": "^0.4.11",
"transform-runtime": "0.0.0"
},
"build": {
"extends": "react-cra",
"appId": "oa.autographa.lite",
"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": {
"provider": "github",
"token": "47dced13903276b8a5280074289601517162f963"
}
},
"repository": {
"type": "git",
"url": "https://github.com/Ashersam/Test-Autographa.git"
},
"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": "craco 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",
"electronbuild": "electron-builder --win --linux --publish never",
"deploy": "electron-builder --x64 --win --linux -p always"
},
"eslintConfig": {
"extends": "react-app"
},
"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"
}
}