-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.3 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
{
"name": "flowly",
"version": "1.0.0",
"description": "Flowly",
"main": "main.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "electron .",
"package-win": "electron-packager . flowly --overwrite",
"dist": "electron-builder"
},
"repository": {
"type": "git",
"url": "git+https://github.com/thomasperge/Flowly.git"
},
"build": {
"appId": "com.example.flowly",
"productName": "Flowly",
"target": "NSIS",
"directories": {
"output": "dist"
},
"win": {
"target": "NSIS",
"icon": "assets/logo.ico"
},
"nsis": {
"allowToChangeInstallationDirectory": true,
"oneClick": false
}
},
"author": "Thomas Kauffmant",
"license": "MIT",
"bugs": {
"url": "https://github.com/thomasperge/Flowly/issues"
},
"homepage": "https://github.com/thomasperge/Flowly#readme",
"dependencies": {
"@types/mongoose": "^5.11.97",
"axios": "^1.3.4",
"bcryptjs": "^2.4.3",
"chart.js": "^4.2.1",
"dotenv": "^16.0.3",
"electron-packager": "^17.1.1",
"fs": "^0.0.1-security",
"moment": "^2.29.4",
"mongodb": "^5.1.0",
"mongoose": "^7.0.2",
"path": "^0.12.7",
"stripe": "^11.18.0",
"uuid": "^9.0.0"
},
"devDependencies": {
"@types/uuid": "^9.0.1"
}
}