-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
64 lines (64 loc) · 1.6 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
{
"name": "pokemon-tcg-tracker",
"description": "Desktop app which keeps track of all collected Pokemon Cards",
"version": "0.0.5",
"author": "Tom Matheussen",
"license": "MIT",
"main": "main.js",
"typings": "./src/typings.d.ts",
"scripts": {
"postinstall": "install-app-deps",
"pack": "build --dir",
"dist:win": "build --win",
"dist:mac": "build --mac",
"dist": "npm run dist:win && npm run dist:mac",
"ng": "ng",
"start": "electron .",
"build": "ng build",
"compile": "cd client && ng build --base-href . --prod -op ../build_client",
"test-release": "npm run compile && npm run dist:win",
"release": "npm run compile && build --publish onTagOrDraft"
},
"repository": {
"type": "git",
"url": "https://github.com/Tommatheussen/pokemon-tcg-tracker"
},
"private": true,
"dependencies": {
"@trodi/electron-splashscreen": "^0.3.0",
"electron-updater": "^2.21.3",
"mkdirp": "^0.5.1",
"moment": "^2.21.0",
"nedb": "^1.8.0",
"pokemontcgsdk": "^1.1.0",
"request-promise-native": "^1.0.5"
},
"devDependencies": {
"electron": "^1.8.4",
"electron-builder": "^20.6.2",
"electron-reload": "^1.2.2"
},
"build": {
"appId": "pokemon.tcg.tracker",
"productName": "Pokemon TCG Tracker",
"files": [
"build_client/",
"main.js",
"electron",
"package.json",
"node_modules/"
],
"win": {
"target": "nsis"
},
"nsis": {
"oneClick": false,
"allowToChangeInstallationDirectory": true
},
"publish": [
{
"provider": "github"
}
]
}
}