-
Notifications
You must be signed in to change notification settings - Fork 20
Expand file tree
/
Copy pathpackage.json
More file actions
111 lines (111 loc) · 3.48 KB
/
package.json
File metadata and controls
111 lines (111 loc) · 3.48 KB
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
{
"name": "ssgl-doom-launcher",
"version": "2.0.0-devpreview.24",
"description": "Modern Doom Frontend/Mod Launcher for every Desktop Operating System",
"main": "./build/main-bundle.js",
"repository": "https://github.com/FreaKzero/ssgl-doom-launcher",
"scripts": {
"start": "concurrently \"yarn dev:main\" \"yarn dev:webp\"",
"dev:webp": "webpack-dev-server --mode development --config ./configs/wp.renderer.dev.js",
"dev:main": "webpack --mode development --config ./configs/wp.main.dev.js",
"build:main": "webpack --mode production --config ./configs/wp.main.prod.js",
"build:renderer": "webpack --mode production --config ./configs/wp.renderer.prod.js",
"build": "yarn build:main && yarn build:renderer",
"lint": "eslint 'client/**/*.js?(x)' --fix && yarn stylelint 'client/**/*.js?(x)'",
"clean": "rimraf ./dist && rimraf ./build",
"package": "yarn clean && yarn build && electron-builder build --publish never",
"auditfix": "npm i --package-lock-only && npm audit fix && rm yarn.lock && yarn import && rm package-lock.json"
},
"build": {
"productName": "SSGL",
"appId": "SSGL",
"mac": {
"target": "dmg"
},
"win": {
"target": "portable"
},
"linux": {
"target": "AppImage",
"publish": [
"github"
]
},
"files": [
"production.html",
"build/**/*.*",
"package.json",
"icon.png"
]
},
"babel": {
"plugins": [
"@babel/plugin-transform-runtime",
"babel-plugin-styled-components"
],
"presets": [
"@babel/preset-env",
"@babel/preset-react"
]
},
"author": "Thomas Pete Petrovic",
"devDependencies": {
"@babel/core": "^7.6.4",
"@babel/plugin-transform-runtime": "^7.7.6",
"@babel/preset-env": "^7.6.3",
"@babel/preset-react": "^7.6.3",
"@babel/runtime": "^7.7.7",
"babel-loader": "^8.0.6",
"babel-plugin-styled-components": "^1.10.6",
"babel-plugin-transform-runtime": "^6.23.0",
"concurrently": "^5.0.0",
"css-loader": "^3.3.0",
"electron": "^7.0.0",
"electron-builder": "^22.0.0",
"electron-reload": "^1.5.0",
"error-overlay-webpack-plugin": "^0.4.1",
"eslint": "^6.6.0",
"eslint-config-prettier": "^6.5.0",
"eslint-plugin-prettier": "^3.1.1",
"eslint-plugin-react": "^7.16.0",
"eslint-plugin-simple-import-sort": "^5.0.2",
"file-loader": "^4.2.0",
"html-webpack-plugin": "^4.0.0-beta.11",
"prettier": "^1.19.1",
"prop-types": "^15.7.2",
"rimraf": "^3.0.2",
"style-loader": "^1.0.1",
"stylelint": "^12.0.0",
"stylelint-config-standard": "^19.0.0",
"stylelint-config-styled-components": "^0.1.1",
"stylelint-processor-styled-components": "^1.9.0",
"svg-inline-loader": "^0.8.0",
"webpack": "^4.41.2",
"webpack-cli": "^3.3.9",
"webpack-dev-server": "^3.9.0",
"webpack-electron-reload": "^1.0.0",
"webpack-merge": "^4.2.2"
},
"dependencies": {
"byte-size": "^6.2.0",
"date-fns": "^2.10.0",
"framer-motion": "^1.10.2",
"fuzzysearch": "^1.0.3",
"got": "^11.8.5",
"i18next": "^19.0.0",
"klaw": "^3.0.0",
"os": "^0.1.1",
"react": "^16.11.0",
"react-dom": "^16.11.0",
"react-hotkeys-hook": "^2.1.1",
"react-i18next": "^11.0.1",
"react-markdown": "^4.3.1",
"react-svg-inline": "^2.1.1",
"react-tiny-virtual-list": "^2.2.0",
"shortid": "^2.2.15",
"styled-components": "^4.4.1",
"url-loader": "^3.0.0",
"use-debounce": "^3.1.0",
"wouter": "^2.4.0"
}
}