-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
114 lines (114 loc) · 3.26 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
{
"name": "fs-viewer",
"version": "1.3.1",
"description": "A tagging small media browser",
"main": "build/index.js",
"types": "src/index.d.ts",
"scripts": {
"test-types": "tsc",
"build": "webpack --mode=production",
"watch": "webpack --mode=development --watch",
"postinstall": "electron-builder install-app-deps",
"release": "npm run clean && npm run build && electron-builder",
"clean": "rm -rf build dist",
"start": "electron .",
"test": "jest",
"test-watch": "jest --watch"
},
"build": {
"appId": "de.unreadableco.freakshow.viewer",
"copyright": "Copyright © 2020 ${author}",
"linux": {
"target": [
"deb",
"rpm"
],
"category": "Graphics"
},
"files": [
"build/*",
"!build/*.txt",
"!build/*.json",
"!node_modules/**/*"
],
"extraFiles": [
{
"from": "build",
"filter": [
"*.txt",
"*.json"
]
}
],
"publish": null
},
"repository": "https://github.com/unreadablewxy/fs-viewer",
"keywords": [],
"author": {
"name": "UnreadableCode",
"email": "[email protected]",
"url": "https://github.com/unreadable-code"
},
"homepage": "https://github.com/unreadablewxy/fs-viewer",
"license": "GPL-2.0",
"devDependencies": {
"@babel/core": "^7.15.5",
"@babel/plugin-proposal-class-properties": "^7.14.5",
"@babel/plugin-proposal-object-rest-spread": "^7.14.7",
"@babel/plugin-transform-runtime": "^7.15.0",
"@babel/preset-env": "^7.15.4",
"@babel/preset-react": "^7.14.5",
"@babel/preset-typescript": "^7.15.0",
"@types/enzyme": "^3.10.9",
"@types/jest": "^27.0.1",
"@types/mime": "^2.0.3",
"@types/node": "^14.17.14",
"@types/react": "^17.0.19",
"@types/react-dom": "^17.0.9",
"@types/react-router-dom": "^5.1.8",
"@types/reselect": "^2.2.0",
"@typescript-eslint/eslint-plugin": "^4.30.0",
"@typescript-eslint/parser": "^4.30.0",
"babel-loader": "^8.2.2",
"copy-webpack-plugin": "^9.0.1",
"css-loader": "^6.2.0",
"electron": "^13.2.3",
"electron-builder": "^22.11.7",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.15.6",
"eslint": "^7.32.0",
"eslint-loader": "^4.0.2",
"eslint-webpack-plugin": "^3.0.1",
"html-webpack-plugin": "^5.3.2",
"jest": "^27.1.0",
"license-webpack-plugin": "^2.3.21",
"mini-css-extract-plugin": "^2.2.2",
"native-ext-loader": "^2.3.0",
"sass": "^1.39.0",
"sass-loader": "^12.1.0",
"source-map-loader": "^3.0.0",
"style-loader": "^3.2.1",
"terser-webpack-plugin": "^5.2.3",
"typescript": "^4.4.2",
"webpack": "5.45.1",
"webpack-cli": "^4.8.0",
"webpack-config-builder": "github:unreadable-code/webpack-config-builder#breaking-changes"
},
"optionalDependencies": {
"fs-xattr": "^0.3.1",
"shell-image-win": "github:unreadable-code/shell-image-win#upgrade-nan"
},
"dependencies": {
"@mdi/js": "^5.9.55",
"@mdi/react": "^1.5.0",
"dbus-native": "^0.4.0",
"fuse.js": "^6.4.6",
"inconel": "github:unreadable-code/inconel",
"mime": "^2.5.2",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-draggable": "^4.4.4",
"react-router-dom": "^5.3.0",
"reselect": "^4.0.0"
}
}