-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
94 lines (94 loc) · 2.39 KB
/
package.json
File metadata and controls
94 lines (94 loc) · 2.39 KB
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
{
"name": "platezero-ocr",
"productName": "PlateZero",
"version": "1.0.0",
"description": "OCR at its fastest.",
"main": "src/index.ts",
"scripts": {
"start": "electron-forge start",
"package": "electron-forge package",
"make": "electron-forge make",
"publish": "electron-forge publish",
"lint": "tslint --project tsconfig.json --type-check --force"
},
"keywords": [],
"author": "PlateZero",
"license": "MIT",
"config": {
"forge": {
"make_targets": {
"win32": [
"squirrel"
],
"darwin": [
"zip"
],
"linux": [
"deb",
"rpm"
]
},
"electronPackagerConfig": {
"packageManager": "npm"
},
"electronWinstallerConfig": {
"name": "ocr"
},
"electronInstallerDebian": {},
"electronInstallerRedhat": {},
"github_repository": {
"owner": "",
"name": ""
},
"windowsStoreConfig": {
"packageName": "",
"name": "ocr"
}
}
},
"dependencies": {
"@types/cheerio": "0.22.11",
"@types/electron-devtools-installer": "2.2.0",
"@types/jsonwebtoken": "8.3.2",
"@types/lodash": "4.14.123",
"@types/mousetrap": "1.6.2",
"@types/node-fetch": "2.1.7",
"@types/react": "16.8.12",
"@types/react-dom": "16.8.3",
"@types/reactstrap": "7.1.3",
"@types/showdown": "1.9.2",
"@types/uuid": "3.4.4",
"aws-sdk": "2.435.0",
"bootstrap": "4.3.1",
"cheerio": "1.0.0-rc.2",
"electron-compile": "6.4.4",
"electron-devtools-installer": "2.2.4",
"electron-log": "3.0.5",
"electron-squirrel-startup": "1.0.0",
"fraction.js": "4.0.12",
"ingredient-parser": "https://github.com/plate0/ingredient-parser.git#v0.2.0",
"jsonwebtoken": "8.5.1",
"lodash": "4.17.11",
"moment": "2.24.0",
"mousetrap": "1.6.3",
"node-fetch": "2.3.0",
"react": "16.8.6",
"react-dom": "16.8.6",
"react-hot-loader": "4.8.2",
"reactstrap": "8.0.0",
"showdown": "1.9.0",
"tslib": "1.9.3",
"turndown": "5.0.3",
"uuid": "3.3.2",
"yargs": "13.2.2"
},
"devDependencies": {
"babel-plugin-transform-async-to-generator": "6.24.1",
"babel-preset-env": "1.7.0",
"babel-preset-react": "6.24.1",
"electron-forge": "5.2.4",
"electron-prebuilt-compile": "4.0.0",
"tslint": "5.15.0",
"typescript": "3.4.1"
}
}