forked from FlashpointProject/launcher
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.99 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
{
"name": "flashpoint-launcher",
"version": "0.0.1",
"description": "A desktop application used to browse, manage and play games from the Flashpoint project",
"main": "main/index.js",
"scripts": {
"build": "gulp build",
"watch": "gulp watch",
"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:all": "cross-env PACK_PLATFORM=all PACK_ARCH=all gulp pack",
"release:linux": "cross-env-shell NODE_ENV=production \"gulp build && npm run pack:linux\"",
"release:win32": "cross-env-shell NODE_ENV=production \"gulp build && npm run pack:win32\"",
"release:all": "cross-env-shell NODE_ENV=production \"gulp build && npm run pack:all\"",
"lint": "tslint -c tslint.json -p tsconfig.json",
"start": "electron ./build/main/index.js"
},
"author": "Jesper Gustafsson",
"license": "MIT",
"dependencies": {
"fast-xml-parser": "3.12.7"
},
"devDependencies": {
"@types/node": "10.12.5",
"@types/react": "16.7.3",
"@types/react-dom": "16.0.9",
"@types/react-redux": "6.0.9",
"@types/react-router-dom": "4.3.1",
"@types/react-virtualized": "9.18.7",
"@types/uuid": "3.4.4",
"awesome-typescript-loader": "5.2.1",
"connected-react-router": "5.0.1",
"copy-webpack-plugin": "4.6.0",
"cross-env": "5.2.0",
"electron": "3.0.8",
"electron-packager": "12.2.0",
"fs-extra": "7.0.1",
"gulp": "3.9.1",
"gulp-typescript": "5.0.0-alpha.3",
"react": "16.6.1",
"react-dom": "16.6.1",
"react-redux": "5.1.1",
"react-router-dom": "4.3.1",
"react-virtualized": "9.21.0",
"redux": "4.0.1",
"redux-devtools-extension": "2.13.5",
"ts-loader": "5.3.0",
"tslint": "5.11.0",
"typesafe-actions": "2.0.4",
"typescript": "3.1.6",
"utility-types": "2.1.0",
"uuid": "3.3.2",
"webpack": "4.25.1",
"webpack-cli": "3.1.2",
"webpack-dev-server": "3.1.10",
"webpack-stream": "5.1.1"
}
}