-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
89 lines (89 loc) · 2.78 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
{
"name": "sekiro-smac",
"version": "1.0.0",
"author": {
"email": "[email protected]",
"name": "Stian Bakken"
},
"description": "Savegame manager for the game Sekiro: Shadows die twice",
"main": "dist/main.js",
"license": "MIT",
"scripts": {
"build-all": "webpack --config config/webpack.combined.ts --progress --mode=\"production\"",
"build-main": "webpack --config config/webpack.main.ts --progress",
"build-renderer": "webpack --config config/webpack.renderer.ts --progress",
"clean": "rimraf dist",
"pack": "electron-builder --dir",
"dist": "run-s clean build-all electron-builder",
"electron-builder": "electron-builder",
"electron": "nodemon --watch dist/main.js --exec \"electron .\"",
"start": "run-p watch-main watch-renderer electron",
"start-prod": "electron ./dist/main.js",
"run-prod": "run-s build-all start-prod",
"tsc-init": "tsc --init",
"watch-main": "webpack --config config/webpack.main.ts --progress --watch",
"watch-renderer": "webpack-dev-server --config config/webpack.renderer.ts"
},
"devDependencies": {
"@babel/core": "^7.4.0",
"@babel/plugin-proposal-class-properties": "^7.4.0",
"@babel/preset-env": "^7.4.2",
"@babel/preset-react": "^7.0.0",
"@babel/preset-typescript": "^7.3.3",
"@types/electron-store": "^1.3.1",
"@types/history": "^4.7.2",
"@types/html-webpack-plugin": "^3.2.0",
"@types/react": "^16.8.10",
"@types/react-dom": "^16.8.3",
"@types/react-router": "^4.4.5",
"@types/react-router-dom": "^4.3.1",
"@types/styled-components": "^4.1.12",
"@types/uuid": "^3.4.4",
"@types/webpack": "^4.4.26",
"@types/webpack-node-externals": "^1.6.3",
"babel-loader": "^8.0.5",
"electron": "^4.1.2",
"electron-builder": "^20.39.0",
"electron-debug": "^2.1.0",
"file-loader": "^3.0.1",
"html-webpack-plugin": "^3.2.0",
"nodemon": "^1.18.10",
"npm-run-all": "^4.1.5",
"rimraf": "^2.6.3",
"ts-node": "^8.0.3",
"typescript": "^3.3.4000",
"webpack": "^4.29.6",
"webpack-cli": "^3.3.0",
"webpack-dev-server": "^3.2.1",
"webpack-node-externals": "^1.7.2"
},
"dependencies": {
"electron-store": "^3.0.0",
"history": "^4.9.0",
"moment": "^2.24.0",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"react-router": "^5.0.0",
"react-router-dom": "^5.0.0",
"styled-components": "^4.2.0"
},
"build": {
"appId": "utrolig.sekiro-smac",
"productName": "Sekiro Savegame Manager",
"files": {
"filter": [
"dist/main.js",
"dist/renderer.js",
"dist/assets/**/*",
"dist/index.html"
]
},
"win": {
"target": "portable",
"icon": "build/icon.ico"
},
"portable": {
"artifactName": "sekiro_smac_portable.exe"
}
}
}