-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
82 lines (82 loc) · 2.13 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
{
"name": "interpretation-switcher",
"productName": "interpretation-switcher",
"description": "Application that synchronizes the reproduction of multiple interpretations of the same song.",
"version": "1.0.0",
"main": "src/index.ts",
"scripts": {
"start": "electron-forge start",
"package": "electron-forge package",
"make": "electron-forge make",
"publish": "electron-forge publish",
"lint": "eslint \"**/*.{js,jsx,ts,tsx}\" --ignore-path .gitignore",
"fix": "eslint \"**/*.{js,jsx,ts,tsx}\" --ignore-path .gitignore --fix"
},
"keywords": [],
"author": "Gabriel Silveira",
"license": "Unlicense",
"config": {
"forge": {
"make_targets": {
"win32": [
"squirrel"
],
"darwin": [
"zip"
],
"linux": [
"deb",
"rpm"
]
},
"electronPackagerConfig": {
"packageManager": "npm",
"icon": "src/assets/icon.ico"
},
"electronWinstallerConfig": {
"name": "interpretation-switcher"
},
"electronInstallerDebian": {},
"electronInstallerRedhat": {},
"github_repository": {
"owner": "gabriel-ss",
"name": "interpretation-switcher"
},
"windowsStoreConfig": {
"packageName": "",
"name": "interpretation-switcher"
}
}
},
"dependencies": {
"@material-ui/core": "^4.4.3",
"@material-ui/icons": "^4.4.3",
"@types/electron-devtools-installer": "^2.0.2",
"@types/howler": "^2.1.1",
"@types/node": "^12.7.8",
"@types/react": "^16.9.3",
"@types/react-dom": "^16.9.1",
"audio-decode": "^1.4.0",
"electron-compile": "^6.4.4",
"electron-devtools-installer": "^2.1.0",
"electron-squirrel-startup": "^1.0.0",
"howler": "^2.1.2",
"react": "^16.10.1",
"react-dom": "^16.10.1",
"react-hot-loader": "^4.12.14",
"tslib": "^1.4.0"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^2.3.1",
"@typescript-eslint/parser": "^2.3.1",
"babel-plugin-transform-async-to-generator": "^6.24.1",
"babel-preset-env": "^1.7.0",
"babel-preset-react": "^6.24.1",
"electron": "^6.0.10",
"electron-forge": "^5.2.4",
"electron-prebuilt-compile": "4.0.0",
"eslint": "^6.5.0",
"eslint-plugin-react": "^7.14.3",
"typescript": "^3.6.3"
}
}