-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
76 lines (76 loc) · 2.81 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
{
"name": "waylt",
"version": "1.0.11",
"description": "Broadcast what you're listening to on Spotify as a Slack status",
"main": "build/electron/main.js",
"homepage": ".",
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject",
"postinstall": "electron-builder install-app-deps",
"electron:copy-static": "mkdir -p build/electron/static ; cp -R electron/static build/electron/ ; cp cert.pem build/ ; cp key.pem build/ ; cp entitlements.mac.inherit.plist build/",
"electron:dev-dist-react": "yarn electron:copy-static && concurrently \"tsc -p electron -w\" \"tsc -p electron && electron .\"",
"electron:dev": "yarn electron:copy-static && concurrently \"BROWSER=none yarn start\" \"wait-on http://localhost:3000 && tsc -p electron -w\" \"wait-on http://localhost:3000 && tsc -p electron && electron .\"",
"electron:windev": "yarn electron:copy-static && concurrently \"SET BROWSER=none && yarn start\" \"wait-on http://localhost:3000 && tsc -p electron -w\" \"wait-on http://localhost:3000 && tsc -p electron && electron .\"",
"electron:build": "yarn build && tsc -p electron && yarn electron:copy-static",
"electron:dist": "electron-builder build --mac --publish never --config electron-builder.yml",
"electron:deploy": "electron-builder build --mac --publish always --config electron-builder.yml"
},
"repository": {
"type": "git",
"url": "https://github.com/nikodraca/waylt.git"
},
"author": "GitHub",
"license": "CC0-1.0",
"devDependencies": {
"@types/bad-words": "^3.0.0",
"@types/electron-devtools-installer": "^2.2.0",
"@types/node": "12",
"@types/react": "16.9.53",
"@types/react-dom": "16.9.8",
"@types/styled-components": "^5.1.4",
"concurrently": "^5.3.0",
"electron": "^9.3.1",
"electron-builder": "22.10.5",
"wait-on": "^5.2.0"
},
"dependencies": {
"axios": "^0.21.0",
"axios-retry": "^3.1.9",
"bad-words": "^3.0.4",
"dotenv": "^8.2.0",
"electron-devtools-installer": "^3.1.1",
"electron-is-dev": "^1.2.0",
"electron-log": "^4.3.1",
"electron-notarize": "^1.0.0",
"electron-reload": "^1.5.0",
"electron-store": "^6.0.1",
"electron-updater": "^4.3.5",
"electron-util": "^0.14.2",
"is-electron": "^2.2.0",
"query-string": "^6.13.6",
"react": "^16.14.0",
"react-dom": "^16.14.0",
"react-scripts": "^4.0.2",
"run-applescript": "^4.0.0",
"styled-components": "^5.2.0",
"typescript": "^4.0.5"
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}