-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
209 lines (209 loc) · 7.87 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
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
{
"name": "translationCore",
"productName": "translationCore",
"version": "3.6.9",
"minCompatibleVersion": "3.6.6",
"manifestVersion": "8",
"description": "A bridge between TS and TM",
"main": "main.js",
"scripts": {
"analyze": "source-map-explorer 'build/static/js/*.js'",
"update-env": "node ./scripts/update_env.js",
"prebuild": "npm run update-env && npm run remove-build-folders && npm run react-build && npm run build-main",
"build": "npm run electronite-build",
"build-macos": "npm run prebuild && npm run electronite-build-macos",
"build-linux": "npm run prebuild && npm run electronite-build-linux",
"build-win": "npm run prebuild && npm run electronite-build-win",
"debug-help": "echo 'open chrome to url \"chrome://inspect/#devices\"'",
"electronite-debug": "npm run debug-help && electronite . --inspect-brk=5656",
"electronite-start": "electronite . ",
"electronite-start-logging": "electronite . --enable-logging",
"electronite-build": "electronite-packager ./build --out=dist --icon=src/images/icon.icns",
"electronite-build-macos": "electronite-packager ./build --out=dist --arch=universal,x64 --icon=src/images/icon.icns",
"electronite-build-linux": "electronite-packager ./build --out=dist --arch=x64,arm64 --icon=src/images/icon.icns",
"electronite-build-win": "electronite-packager ./build --out=dist --arch=ia32,x64 --icon=src/images/icon.ico",
"react-start": "craco start",
"react-build": "craco build",
"build-main": "webpack --config electronite/webpack.config.js",
"remove-build-folders": "rm -rf dist && rm -rf build",
"prestart": "npm run update-env",
"start": "concurrently \"npm run react-start\" \"wait-on http://localhost:3000/ && cross-env NODE_ENV=development npm run electronite-start\"",
"start-debug": "concurrently \"npm run react-start\" \"wait-on http://localhost:3000/ && cross-env NODE_ENV=development npm run electronite-debug\"",
"storybook": "start-storybook -p 9001 -c .storybook",
"lint": "eslint ./src",
"lint:fix": "eslint ./src --fix",
"test-one": "craco test",
"test": "eslint ./src && craco test --testPathIgnorePatterns=src/tC_apps/ --logHeapUsage --watchAll=false",
"ci-test": "eslint ./src && craco test --max-old-space-size=8192 --maxWorkers=4 --testPathIgnorePatterns=src/tC_apps/ --logHeapUsage --coverage",
"doc": "jsdoc -c jsdoc/jsdoc.json",
"find:extra-locale": "node scripts/locale/find_extras.js src/locale/English-en_US.json src/js",
"find:missing-locale": "node scripts/locale/find_missing.js src/locale/English-en_US.json src/js",
"locale-key-comparison": "node ./scripts/locale_key_comparison.js",
"npm-clean-up": "rm -rf node_modules/ && rm -rf src/tC_apps/*/node_modules && rm package-lock.json && npm i",
"release-content-update": "node scripts/releaseContentUpdate",
"clean-up-apps": "rm -rf src/tC_apps/*/node_modules",
"load-apps": "git submodule update --init --recursive",
"minimal-resources": "node scripts/resources/minimalResources.js tcResources en el-x-koine hbo",
"overwrite-resources": "rm -rf tcResources/en/bibles tcResources/en/translationHelps tcResources/el-x-koine tcResources/hi && npm run update-resources",
"update-apps": "git submodule foreach --recursive git checkout develop && git submodule foreach --recursive git pull",
"update-attributions": "node scripts/attributions/generateAttributionData.js src/js/components/home/license/attributionData.json",
"update-resources": "node scripts/resources/updateResources.js tcResources en hi el-x-koine hbo --allAlignedBibles --uWoriginalLanguage --unfoldingWordOrg --preProd",
"update-version": "node ./scripts/versionScript.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/unfoldingWord/translationCore"
},
"keywords": [
"Translation",
"Bible",
"DSM",
"Wycliffe",
"unfoldingWord"
],
"author": {
"name": "unfoldingWord",
"email": "[email protected]"
},
"license": "GPL-2.0",
"bugs": {
"url": "https://github.com/unfoldingWord-dev/translationCore/issues"
},
"homepage": "./",
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
],
"devDependencies": {
"@babel/core": "7.8.7",
"@babel/runtime": "7.8.7",
"babel-loader": "8.1.0",
"bluebird": "3.5.1",
"codecov": "3.7.1",
"concurrently": "5.1.0",
"copy-webpack-plugin": "5.1.1",
"cross-env": "7.0.2",
"css-loader": "3.4.2",
"electron-devtools-installer": "^3.2.0",
"electronite": "25.3.2-graphite",
"electronite-packager": "17.1.1-graphite",
"enzyme": "3.8.0",
"enzyme-adapter-react-16": "1.8.0",
"enzyme-to-json": "3.3.5",
"eslint-config-prettier": "6.10.0",
"eslint-plugin-jest": "23.8.2",
"eslint-plugin-jsdoc": "^24.0.0",
"eslint-plugin-prettier": "3.1.2",
"fetch-mock": "5.13.1",
"file-loader": "6.0.0",
"glob": "7.1.3",
"gulp": "4.0.0",
"gulp-change": "1.0.0",
"jsdoc": "4.0.2",
"ncp": "2.0.0",
"prettier": "2.0.1",
"react-addons-test-utils": "15.6.2",
"react-dnd-test-backend": "10.0.2",
"react-test-renderer": "16.8.1",
"redux-jest": "1.1.1",
"redux-mock-store": "1.3.0",
"redux-test-utils": "0.1.3",
"request-promise": "4.2.2",
"source-map-explorer": "2.2.2",
"spec-xunit-file": "0.0.1-3",
"style-loader": "1.1.3",
"taffydb": "2.7.3",
"temp": "0.8.3",
"wait-on": "4.0.0",
"webpack-cli": "3.3.11",
"yargs": "10.0.3"
},
"dependencies": {
"@craco/craco": "5.6.4",
"@electron/remote": "2.0.7",
"@material-ui/core": "4.12.3",
"@material-ui/icons": "4.11.2",
"@neutrinog/electron-dl": "1.11.1",
"@sendgrid/mail": "6.4.0",
"adm-zip": "0.4.13",
"agentkeepalive": "4.1.0",
"archiver": "3.0.0",
"axios": "0.19.1",
"babel-polyfill": "6.26.0",
"bible-reference-range": "1.0.1",
"checking-tool-wrapper": "7.4.10",
"crypto-js": "3.1.8",
"csv": "1.2.1",
"deep-equal": "1.0.1",
"deep-freeze": "0.0.1",
"dotenv": "6.2.0",
"follow-redirects": "1.2.5",
"fs-extra": "4.0.3",
"gogs-client": "0.5.2",
"json-stringify-safe": "5.0.1",
"konami-code-js": "0.8.0",
"lodash": "4.17.19",
"material-ui": "0.20.2",
"memoize-one": "5.0.0",
"mkdirp": "0.5.1",
"moment": "2.24.0",
"open": "0.0.5",
"opn": "5.1.0",
"os-locale": "3.0.1",
"ospath": "1.2.2",
"path-extra": "3.0.0",
"prop-types": "15.7.2",
"proskomma-react-hooks": "2.3.4",
"react": "16.14.0",
"react-bootstrap": "0.32.4",
"react-container-dimensions": "1.3.3",
"react-dnd": "2.5.4",
"react-dnd-html5-backend": "2.5.4",
"react-dom": "16.8.6",
"react-hotkeys": "2.0.0",
"react-localize-redux": "3.5.3",
"react-redux": "5.1.1",
"react-remarkable": "1.1.3",
"react-scripts": "3.4.4",
"react-select": "1.2.0",
"react-spotlight-clickable": "1.0.5",
"react-toggle": "4.0.2",
"react-tooltip": "3.6.0",
"reactable": "0.14.1",
"readdir-enhanced": "2.2.4",
"redux": "3.7.2",
"redux-batched-actions": "0.4.1",
"redux-logger": "3.0.6",
"redux-promise": "0.6.0",
"redux-subscriptions": "0.2.0",
"redux-thunk": "2.2.0",
"reselect": "3.0.1",
"rimraf": "2.6.3",
"selections": "0.1.7",
"semver": "5.5.0",
"simple-git": "2.48.0",
"string-punctuation-tokenizer": "^2.2.0",
"sudo-prompt": "6.2.1",
"tc-electron-env": "0.10.0",
"tc-source-content-updater": "1.4.32",
"tc-strings": "0.1.7",
"tc-tool": "4.1.0",
"tc-ui-toolkit": "6.2.10",
"truncate-utf8-bytes": "1.0.2",
"tsv-groupdata-parser": "1.1.0",
"usfm-js": "3.4.3",
"uuid": "3.2.1",
"word-aligner": "1.0.2",
"wordmap": "0.8.2",
"wordmap-lexer": "0.3.6",
"xregexp": "3.2.0",
"yamljs": "0.3.0",
"zip-folder": "1.0.0"
},
"engines": {
"node": ">=16.14.0 <16.15",
"npm": ">=7.18.1"
}
}