-
Notifications
You must be signed in to change notification settings - Fork 68
/
package.json
104 lines (104 loc) · 3.3 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
{
"name": "lofi",
"version": "2.0.2",
"description": "Mini Spotify player with visualizations.",
"homepage": "http://lofi.rocks",
"main": "./pack/main.bundle.js",
"scripts": {
"install": "yarn run build",
"config-xcode": "node-gyp configure -- -f xcode",
"build": "node-gyp rebuild --target=4.0.1 --dist-url=https://electronjs.org/headers --openssl_fips=X && genversion --es6 --semi version.generated.ts",
"start": "electron ./pack/main.bundle.js",
"dev": "yarn run development",
"development": "rimraf pack && webpack --watch --config ./webpack.dev.js --progress --color",
"production": "rimraf pack && webpack --config ./webpack.prod.js --progress --color",
"pack": "yarn run build && yarn run production && rimraf dist && electron-builder --dir",
"dist": "yarn run build && yarn run production && rimraf dist && electron-builder",
"clean": "rimraf build && rimraf pack && rimraf dist",
"lint": "eslint . --ext .ts,.tsx --max-warnings=0",
"lint:fix": "eslint . --ext .ts,.tsx --fix",
"prepare": "husky install"
},
"repository": "https://github.com/dvx/lofi.git",
"author": "David Titarenco <david.titarenco@gmail.com>",
"license": "MIT",
"private": true,
"build": {
"files": [
"./pack/**/*",
"./icon.*"
],
"directories": {
"output": "dist"
},
"appId": "lofi.rocks",
"mac": {
"identity": null,
"category": "music.player"
},
"publish": [
{
"provider": "github",
"releaseType": "draft"
}
]
},
"devDependencies": {
"@types/lodash": "^4.14.168",
"@types/node": "^14.14.22",
"@types/react": "^17.0.0",
"@types/react-dom": "^17.0.0",
"@types/styled-components": "^5.1.26",
"@typescript-eslint/eslint-plugin": "^5.28.0",
"@typescript-eslint/parser": "^5.28.0",
"copy-pkg-json-webpack-plugin": "^0.0.40",
"copy-webpack-plugin": "^11.0.0",
"css-loader": "^5.0.1",
"electron": "^24.8.5",
"electron-builder": "^23.6.0",
"eslint": "^7.32.0 || ^8.2.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.28.0",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-simple-import-sort": "^7.0.0",
"file-loader": "^6.2.0",
"genversion": "^3.0.1",
"html-webpack-plugin": "^4.5.1",
"husky": "^8.0.3",
"native-ext-loader": "^2.3.0",
"node-addon-api": "^7.1.0",
"node-gyp": "^10.0.1",
"prettier": "^2.7.1",
"rimraf": "^3.0.2",
"style-loader": "^2.0.0",
"ts-loader": "^8.0.14",
"typescript": "^4.1.3",
"webpack": "^5.76.2",
"webpack-cli": "^5.0.1",
"webpack-permissions-plugin": "^1.0.9"
},
"dependencies": {
"@emotion/react": "^11.11.0",
"@emotion/styled": "^11.11.0",
"@mantine/core": "^6.0.10",
"@mantine/hooks": "^6.0.10",
"bindings": "^1.3.1",
"dayjs": "^1.11.7",
"electron-store": "^8.1.0",
"electron-util": "^0.17.2",
"lodash": "^4.17.21",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"react-hook-form": "^7.41.2",
"styled-components": "^5.3.6",
"zod": "^3.22.3"
},
"resolutions": {
"@types/react": "17.0.2",
"@types/react-dom": "17.0.2"
}
}