-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
71 lines (71 loc) · 1.79 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
{
"name": "yash-kadaru-personal-website",
"version": "1.0.0",
"description": "",
"source": "./index.html",
"browserslist": "> 0.5%, last 2 versions, not dead",
"scripts": {
"start": "parcel",
"build": "parcel build",
"clean": "shx rm -rf dist/*",
"deploy:gh-pages": "push-dir --dir=dist --branch=gh-pages --cleanup --verbose",
"deploy:ready": "npm-run-all -s -c -l clean build",
"deploy": "npm-run-all -s -l deploy:ready deploy:gh-pages"
},
"repository": {
"type": "git",
"url": "git+https://github.com/yashsway/yashsway.github.io.git"
},
"author": "Yash Kadaru",
"license": "UNLICENSED",
"bugs": {
"url": "https://github.com/yashsway/yashsway.github.io/issues"
},
"homepage": "https://github.com/yashsway/yashsway.github.io#readme",
"devDependencies": {
"@parcel/packager-raw-url": "2.6.0",
"@parcel/packager-xml": "2.6.0",
"@parcel/transformer-sass": "2.6.0",
"autoprefixer": "^10.4.7",
"npm-run-all": "^4.1.5",
"parcel": "^2.6.0",
"parcel-config-pwa-manifest": "^0.1.2",
"parcel-reporter-static-files-copy": "^1.3.4",
"postcss": "^8.4.14",
"push-dir": "^0.4.1",
"sharp": "^0.29.1",
"shx": "^0.3.4",
"tailwindcss": "^3.0.24"
},
"@parcel/transformer-css": {
"drafts": {
"nesting": true
}
},
"staticFiles": {
"staticPath": "public",
"watcherGlob": "**"
},
"pwaManifest": {
"name": "Yash Kadaru's Personal Website",
"startURL": "./",
"theme": "#3F325D",
"backgroundColor": "#fff",
"genIconOpts": {
"baseIcon": "./media/icons/webclip.jpg",
"sizes": [
192,
256,
384,
512
],
"genFavicons": true,
"purpose": [
"maskable"
]
}
},
"dependencies": {
"randomcolor": "^0.6.2"
}
}