-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
119 lines (119 loc) · 3.97 KB
/
package.json
File metadata and controls
119 lines (119 loc) · 3.97 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
112
113
114
115
116
117
118
119
{
"name": "electron-game-collection",
"productName": "GameCollection",
"version": "1.0.0",
"description": "Games collection manager",
"main": "main.js",
"scripts": {
"prebuild": "rm -rf ./dist/*",
"postinstall": "patch-package",
"build-watch": "webpack --progress --colors --mode production --watch",
"build-dev": "webpack --progress --colors --mode development",
"build-dev-watch": "webpack --progress --colors --mode development --watch",
"build-release": "scripts/build-release.sh",
"start": "electron .",
"start-dev": "electron . --debug --disable-gpu",
"prepack": "check-for-leaks",
"prettier": "find ./src -name '*.js' -or -name '*.ts' -or -name '*.tsx' -or -name '*.scss' | xargs prettier --write",
"tslint": "npx tslint -p . --fix",
"eslint": "npx eslint --fix ./main.js",
"tsc": "npx tsc -p . --noEmit",
"tsc:files": "npx tsc -p . --noEmit | grep 'src/'"
},
"author": "André Augusto Tissot",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/andrehtissot/electron-game-collection"
},
"bugs": {
"url": "https://github.com/andrehtissot/electron-game-collection/issues"
},
"homepage": "https://github.com/andrehtissot/electron-game-collection/blob/master/README.md",
"keywords": [
"steam",
"games collection",
"games manager"
],
"platforms": [
"mac",
"windows",
"linux"
],
"engines": {
"node": ">=14.10.1"
},
"typings": "src/typings",
"devDependencies": {
"@types/electron": "^1.6.10",
"@types/react": "^16.9.51",
"@types/react-dom": "^16.9.8",
"@types/react-router-dom": "^5.1.6",
"@types/react-window": "^1.8.2",
"awesome-typescript-loader": "^5.2.1",
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"check-for-leaks": "^1.2.1",
"copy-webpack-plugin": "^6.2.1",
"css-loader": "^4.3.0",
"devtron": "^1.4.0",
"electron": "^10.1.3",
"electron-builder": "^22.8.1",
"electron-log": "^4.2.4",
"electron-settings": "^4.0.2",
"electron-shortcut-normalizer": "^1.0.0",
"electron-winstaller": "^4.0.1",
"eslint": "^7.11.0",
"eslint-config-prettier": "^6.12.0",
"eslint-plugin-prettier": "^3.1.4",
"extract-text-webpack-plugin": "^4.0.0-beta.0",
"html-webpack-plugin": "^4.5.0",
"husky": "^4.3.0",
"mini-css-extract-plugin": "^1.0.0",
"mocha": "^8.1.3",
"node-sass": "^4.14.1",
"npm-run-all": "^4.1.5",
"patch-package": "^6.2.2",
"prettier": "^2.1.2",
"request": "^2.88.2",
"rimraf": "^3.0.2",
"sass-loader": "^10.0.3",
"signcode": "^1.0.0",
"source-map-loader": "^1.1.1",
"spectron": "^12.0.0",
"standard": "^14.3.4",
"string-replace-loader": "^2.3.0",
"style-loader": "^2.0.0",
"tslint": "^6.1.3",
"tslint-config-prettier": "^1.18.0",
"tslint-config-standard": "^9.0.0",
"tslint-eslint-rules": "^5.4.0",
"tslint-microsoft-contrib": "^6.2.0",
"tslint-react": "^5.0.0",
"tslint-react-hooks": "^2.2.2",
"typescript": "^4.0.3",
"webpack": "^4.44.2",
"webpack-cli": "^3.3.12",
"worker-loader": "^3.0.4"
},
"dependencies": {
"cache-manager": "^3.4.0",
"cache-manager-fs-hash": "^0.0.9",
"csvtojson": "^2.0.10",
"csvwriter": "^1.3.0",
"dexie": "^3.0.2",
"glob": "^7.1.6",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-router-dom": "^5.2.0",
"react-window": "^1.8.5",
"regexpu-core": "^4.7.1",
"update-electron-app": "^2.0.1",
"uuid": "^8.3.1"
},
"husky": {
"hooks": {
"pre-push": "check-for-leaks"
}
}
}