-
Notifications
You must be signed in to change notification settings - Fork 14
/
package.json
116 lines (116 loc) · 4.17 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
110
111
112
113
114
115
116
{
"name": "startrektimelinestool",
"productName": "Star Trek Timelines Crew Management",
"version": "0.8.3",
"description": "Tool for managing Star Trek Timelines crew",
"author": "IAmPicard",
"copyright": "Copyright © 2018 IAmPicard",
"homepage": "https://github.com/johanw666/StarTrekTimelinesSpreadsheet",
"repository": {
"type": "git",
"url": "https://github.com/johanw666/StarTrekTimelinesSpreadsheet.git"
},
"license": "GPL-3.0",
"build": {
"appId": "IAmPicard.StarTrekTimelinesTool",
"mac": {
"category": "public.app-category.games"
}
},
"babel": {
"presets": [
"@babel/react",
[
"@babel/env",
{
"targets": {
"chrome": "66"
}
}
]
],
"plugins": [
"@babel/plugin-proposal-class-properties"
]
},
"main": "main.js",
"scripts": {
"prod": "webpack --mode production --config ./webpack/webpack.build.electron.config.js && electron --noDevServer .",
"dev": "webpack-dev-server --mode development --hot --host 0.0.0.0 --config=./webpack/webpack.dev.electron.config.js",
"build": "webpack --mode production --config ./webpack/webpack.build.electron.config.js",
"rebuild": "electron-rebuild",
"buildweb": "webpack --mode production --config ./webpack/webpack.build.web.config.js",
"buildexp": "webpack --mode production --config ./webpack/webpack.build.exp.config.js",
"bundlestats": "webpack --mode production --config ./webpack/webpack.build.web.config.js --profile --json > dist/stats.json && webpack-bundle-analyzer dist/stats.json",
"serveweb": "webpack-dev-server --mode development --hot --host localhost --port 80 --config=./webpack/webpack.dev.web.config.js",
"package": "webpack --mode production --config ./webpack/webpack.build.electron.config.js",
"postpackage": "electron-packager ./ --out=./builds --prune --icon=src/assets/icons/ATFleet.ico",
"packagedev": "webpack --mode development --config ./webpack/webpack.build.electron.config.js",
"postpackagedev": "electron-packager ./ --out=./builds --prune --icon=src/assets/icons/ATFleet.ico",
"installer": "node createinstaller.js",
"install:all": "run-s -l install:api rebuild",
"install:api": "cd STTApi && npm install",
"postinstall": "electron-builder install-app-deps"
},
"devDependencies": {
"@babel/cli": "^7.2.3",
"@babel/core": "^7.2.2",
"@babel/plugin-proposal-class-properties": "^7.2.3",
"@babel/plugin-proposal-object-rest-spread": "^7.2.0",
"@babel/preset-env": "^7.2.3",
"@babel/preset-react": "^7.0.0",
"@uifabric/styling": "^6.39.0",
"babel-loader": "^8.0.4",
"copy-webpack-plugin": "^4.6.0",
"css-loader": "^2.1.0",
"electron": "^4.0.0",
"electron-builder": "^20.38.4",
"electron-packager": "^13.0.1",
"electron-rebuild": "^1.8.2",
"file-loader": "^3.0.1",
"html-webpack-plugin": "^3.2.0",
"ifdef-loader": "^2.0.3",
"mini-css-extract-plugin": "^0.5.0",
"nan": "^2.12.1",
"npm-run-all": "^4.1.5",
"office-ui-fabric-react": "^6.118.1",
"pubnub": "^4.21.6",
"react": "^16.7.0",
"react-dom": "^16.7.0",
"style-loader": "^0.23.1",
"ts-loader": "^5.3.2",
"tslint": "^5.12.0",
"tslint-config-standard": "^8.0.1",
"tslint-loader": "^3.5.4",
"typescript": "^3.2.2",
"url-loader": "^1.1.2",
"webapp-webpack-plugin": "^2.4.0",
"webpack": "^4.28.3",
"webpack-bundle-analyzer": "^3.0.3",
"webpack-cdn-plugin": "^2.3.3",
"webpack-cli": "^3.1.2",
"webpack-dev-server": "^3.1.14",
"webpack-merge": "^4.1.5",
"webpack-preprocessor-loader": "^1.0.4",
"webpack-serve": "^2.0.3",
"worker-loader": "^2.0.0",
"xlsx-populate": "^1.17.0"
},
"dependencies": {
"bindings": "^1.3.1",
"dexie": "^2.0.4",
"electron-settings": "^3.2.0",
"fb": "^2.0.0",
"history": "^4.7.2",
"react-device-detect": "^1.6.1",
"react-table": "^6.8.6",
"semantic-ui-react": "^0.84.0",
"semver": "^5.6.0",
"snarkdown": "^1.2.2",
"stt-native": "file:native",
"stt-native-wasm": "file:native_wasm",
"sttapi": "file:STTApi",
"url-search-params-polyfill": "^5.0.0",
"uuid": "^3.3.2"
}
}