forked from FlashpointProject/launcher
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
115 lines (115 loc) · 4 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
{
"name": "flashpoint-launcher",
"version": "9.1.0",
"description": "A desktop application used to browse, manage and play games from BlueMaxima's Flashpoint",
"main": "build/main/index.js",
"config": {
"installed": false
},
"scripts": {
"start": "electron ./build/main/index.js",
"build": "gulp build",
"build-api-docs": "typedoc --out docs/api typings/flashpoint-launcher.d.ts --includeDeclarations --excludeExternals --disableOutputCheck",
"watch": "gulp watch",
"pack": "gulp pack",
"snapshot": "cross-env-shell NODE_ENV=production \"npm run build && npm run pack\"",
"test": "jest",
"lint": "eslint ./src/**/*.{ts,tsx} ./gulpfile.js",
"pack:linux": "cross-env PACK_PLATFORM=linux PACK_ARCH=x64 gulp pack",
"pack:win32": "cross-env PACK_PLATFORM=win32 PACK_ARCH=ia32 gulp pack",
"pack:darwin": "cross-env PACK_PLATFORM=darwin PACK_ARCH=x64 gulp pack",
"pack:all": "cross-env PACK_PLATFORM=all PACK_ARCH=all gulp pack",
"release": "cross-env-shell NODE_ENV=production PUBLISH=true \"npm run build && npm run pack\"",
"release:linux": "cross-env-shell NODE_ENV=production PUBLISH=true \"npm run build && npm run pack:linux\"",
"release:win32": "cross-env-shell NODE_ENV=production PUBLISH=true \"npm run build && npm run pack:win32\"",
"release:darwin": "cross-env-shell NODE_ENV=production PUBLISH=true \"npm run build && npm run pack:darwin\"",
"release:all": "cross-env-shell NODE_ENV=production PUBLISH=true \"npm run build && npm run pack:all\"",
"postinstall": "electron-builder install-app-deps"
},
"author": {
"name": "Jesper Gustafsson",
"email": "[email protected]"
},
"license": "MIT",
"dependencies": {
"axios": "0.19.2",
"connected-react-router": "6.8.0",
"electron-updater": "4.3.1",
"electron-util": "0.14.2",
"fast-xml-parser": "3.16.0",
"follow-redirects": "1.11.0",
"fs-extra": "8.1.0",
"mime": "2.4.4",
"node-7z": "1.1.1",
"react": "16.13.1",
"react-color": "2.18.0",
"react-dom": "16.13.1",
"react-redux": "7.2.0",
"react-router-dom": "5.1.2",
"react-virtualized": "9.21.2",
"redux": "4.0.5",
"redux-devtools-extension": "2.13.8",
"reflect-metadata": "0.1.10",
"sqlite3": "4.2.0",
"tail": "2.0.3",
"tree-kill": "1.2.2",
"typeorm": "0.2.22",
"typesafe-actions": "4.4.2",
"uuid": "3.3.2",
"uuid-validate": "0.0.3",
"which": "1.3.1",
"ws": "7.2.5",
"yaml": "1.10.0"
},
"devDependencies": {
"@types/electron-devtools-installer": "2.2.0",
"@types/enzyme": "3.10.7",
"@types/enzyme-adapter-react-16": "1.0.6",
"@types/follow-redirects": "1.8.0",
"@types/fs-extra": "8.1.0",
"@types/jest": "24.0.17",
"@types/mime": "2.0.1",
"@types/node": "12.7.0",
"@types/react": "16.9.34",
"@types/react-color": "3.0.1",
"@types/react-dom": "16.9.7",
"@types/react-redux": "7.1.7",
"@types/react-router-dom": "4.3.4",
"@types/react-virtualized": "9.21.9",
"@types/tail": "2.0.0",
"@types/uuid": "3.4.5",
"@types/uuid-validate": "0.0.1",
"@types/which": "1.3.2",
"@types/ws": "6.0.3",
"@typescript-eslint/eslint-plugin": "3.3.0",
"@typescript-eslint/parser": "3.3.0",
"coveralls": "3.1.0",
"cross-env": "7.0.2",
"electron": "8.2.3",
"electron-builder": "22.5.1",
"electron-devtools-installer": "3.1.1",
"enzyme": "3.11.0",
"enzyme-adapter-react-16": "1.15.2",
"enzyme-to-json": "3.6.1",
"eslint": "7.2.0",
"eslint-plugin-only-warn": "1.0.2",
"eslint-plugin-react": "7.20.0",
"gulp": "4.0.2",
"jest": "24.8.0",
"jest-websocket-mock": "2.0.2",
"mock-socket": "9.0.3",
"ts-jest": "24.0.2",
"ts-loader": "6.0.4",
"ts-transform-paths": "2.0.1",
"tsconfig-paths-webpack-plugin": "3.2.0",
"tslint": "5.18.0",
"ttypescript": "1.5.10",
"typedoc": "0.17.8",
"typescript": "3.9.2",
"webpack": "4.43.0",
"webpack-cli": "3.3.11"
},
"optionalDependencies": {
"fsevents": "2.1.3"
}
}