forked from SCheeseman/SideQuest
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
109 lines (109 loc) · 3.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
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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
{
"name": "SideQuest",
"version": "0.10.3",
"description": "A open app store for mobile android based VR devices such as the Levovo Mirage, Oculus Go, Oculus Quest, Vive Focus.",
"repository": "https://github.com/the-expanse/SideQuest.git",
"license": "MIT",
"author": "Shane Harris",
"main": "build-electron/app.js",
"scripts": {
"concurrently": "concurrently",
"start": "concurrently \"yarn electron-build && wait-on http-get://localhost:4205/ && cross-env NODE_ENV=dev electron .\" \"cd desktop-app && ng serve --port 4205\"",
"postinstall": "electron-builder install-app-deps && cd desktop-app && yarn install",
"dist": "yarn electron-build && yarn app-build && electron-builder",
"angular": "cd desktop-app && ng serve --port 4205",
"electron-dev": "cross-env NODE_ENV=dev electron .",
"electron": "yarn electron-build && yarn electron-dev",
"app-build": "cd desktop-app && ng build --prod --aot && cd ..",
"electron-build": "tsc",
"reset": "rm -rf node_modules && rm -rf desktop-app/node_modules && yarn install && cd desktop-app && yarn install"
},
"build": {
"appId": "com.sidequestvr.app",
"mac": {
"category": "public.app-category.utilities",
"target": [
"dmg"
]
},
"win": {
"artifactName": "${productName}-${version}-${arch}-${os}.${ext}",
"target": [
"nsis",
{
"target": "zip",
"arch": [
"ia32"
]
}
]
},
"linux": {
"target": [
"tar.xz"
]
},
"nsis": {
"artifactName": "${productName} Setup ${version}-x64-${os}.${ext}",
"oneClick": false,
"allowToChangeInstallationDirectory": true
},
"files": [
"build/**/*",
"node_modules/**/*",
"package.json",
"build-electron/**/*"
],
"asarUnpack": [
"build/**/*"
],
"afterSign": "build/notarize.js"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged --pattern \"**/*.*(js|jsx|ts|tsx)\"",
"post-commit": "git update-index -g"
}
},
"prettier": {
"tabWidth": 4,
"printWidth": 132,
"semi": true,
"jsxBracketSameLine": true,
"parser": "typescript",
"singleQuote": true,
"useTabs": false,
"trailingComma": "es5"
},
"dependencies": {
"adbkit": "^2.11.1",
"adm-zip": "^0.4.14",
"concurrently": "^4.1.0",
"cross-env": "^5.2.0",
"electron-updater": "^4.1.2",
"express": "^4.17.1",
"extract-zip": "^1.6.7",
"md5": "^2.2.1",
"mkdirp": "^1.0.3",
"node-stream-zip": "^1.9.1",
"opn": "^6.0.0",
"ping": "^0.2.2",
"request": "^2.88.0",
"request-progress": "^3.0.0",
"semver": "^6.0.0",
"targz": "^1.0.1",
"wait-on": "^3.2.0",
"yauzl": "^2.10.0"
},
"devDependencies": {
"@angular/cli": "^8.0.3",
"electron": "^8.2.0",
"electron-builder": "^22.4.0",
"electron-notarize": "^0.1.1",
"husky": "^2.3.0",
"prettier": "1.17.1",
"pretty-quick": "^1.11.0",
"ts-loader": "^6.2.1",
"typescript": "^3.8.3"
}
}