-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
44 lines (44 loc) · 1.15 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
{
"name": "iCarus",
"version": "1.0.0",
"description": "Projeto de modelagem com backend e frontend",
"scripts": {
"build": "tsc",
"watch": "tsc -w",
"preinstall": "git clone --depth 1 https://github.com/Bionex/Trabalho-Modelagem backend && git clone --depth 1 https://github.com/juliarobaina/Icarus-Trabalho-Modelagem static",
"start": "npm run build && electron ./dist/src/main.js"
},
"keywords": [],
"author": "Franklin",
"devDependencies": {
"electron": "^16.0.2",
"typescript": "^4.5.2"
},
"dependencies": {
"@types/node": "^17.0.2",
"dotenv": "^10.0.0",
"electron-typescript-ipc": "^1.0.1",
"moment": "^2.29.1"
},
"plugins": [
[
"@electron-forge/plugin-webpack",
{
"mainConfig": "./webpack.main.config.js",
"renderer": {
"config": "./webpack.renderer.config.js",
"entryPoints": [
{
"html": "./src/index.html",
"js": "./src/renderer.ts",
"name": "main_window",
"preload": {
"js": "./src/preload.ts"
}
}
]
}
}
]
]
}