-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
65 lines (65 loc) · 1.5 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
{
"name": "electrocornea",
"version": "0.3.1",
"description": "ElectroCornea desktop client",
"main": "src/core/main.js",
"scripts": {
"start": "npm run preprocess && electron .",
"pack": "electron-builder --dir",
"dist": "electron-builder",
"postinstall": "electron-builder install-app-deps",
"release": "electron-builder build",
"preprocess": "npx tailwind build src/gui/styles.css -o src/gui/preprocessed.css",
"test": "ava"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ouracademy/electrocornea.git"
},
"devDependencies": {
"ava": "^2.4.0",
"electron": "7.1.2",
"electron-builder": "^21.2.0",
"prettier": "1.19.1"
},
"build": {
"appId": "org.our-academy.electrocornea",
"productName": "ElectroCornea",
"copyright": "Copyright © 2019 Ouracademy",
"publish": [
{
"provider": "github",
"releaseType": "release"
}
],
"win": {
"target": [
{
"target": "nsis",
"arch": [
"x64",
"ia32"
]
}
]
},
"files": [
"**/*",
"build/*"
]
},
"dependencies": {
"chokidar": "^3.3.1",
"cron": "^1.7.2",
"csv-parser": "^2.3.2",
"electron-store": "^5.1.0",
"electron-updater": "^4.2.0",
"form-data": "^3.0.0",
"got": "^10.4.0",
"iconv-lite": "^0.5.1",
"slice-file": "^1.0.0",
"tailwindcss": "^1.1.4",
"winston": "^3.2.1",
"winston-mongodb": "^5.0.1"
}
}