-
Notifications
You must be signed in to change notification settings - Fork 21
/
package.json
53 lines (53 loc) · 1.34 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
{
"name": "lofi-player",
"version": "1.0.0",
"description": "A Lofi Player builded with HTML, CSS and Javascript using Parcel as Module Bundler",
"main": "index.js",
"pwaManifest": {
"name": "Lofi Player",
"shortName": "L-Player",
"startURL": "/lofi-player/",
"theme": "#020402",
"generateIconOptions": {
"baseIcon": "./public/favicon.svg",
"sizes": [
32,
64,
192,
384,
512,
780
],
"genFavicons": true
}
},
"scripts": {
"dev": "parcel public/index.html --out-dir development -p 3000",
"pre-deploy": "yarn install && parcel build public/index.html --out-dir dist --public-url /lofi-player && workbox generateSW"
},
"repository": {
"type": "git",
"url": "git+https://github.com/alexrintt/lofi-player.git"
},
"keywords": [
"parcel"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/alexrintt/lofi-player/issues"
},
"homepage": "https://alexrintt.github.io/lofi-player",
"devDependencies": {
"@babel/core": "^7.18.5",
"@babel/plugin-transform-runtime": "^7.9.0",
"@babel/runtime-corejs2": "^7.9.2",
"parcel-bundler": "^1.12.4",
"parcel-plugin-pwa-manifest": "^3.0.6",
"sass": "^1.26.3",
"workbox-cli": "^5.1.3"
},
"dependencies": {
"axios": "^0.19.2",
"gh-pages": "^2.2.0"
}
}