-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
32 lines (32 loc) · 1.05 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
{
"name": "felipebernardes.github.io",
"version": "4.0.0",
"description": "Felipe Bernardes' Website",
"scripts": {
"start": "parcel src/index.html",
"build": "rm -rf dist && parcel build src/index.html --no-content-hash",
"deploy:prepare": "git checkout main && git merge wip && npm run build && rm -rf img && mv dist/* . && git add . && git commit -m 'Update bundle'",
"deploy:push": "git push origin main",
"deploy": "npm run deploy:prepare && npm run deploy:push"
},
"browserslist": "> 0.5%, last 10 versions, not dead",
"repository": {
"type": "git",
"url": "git+https://github.com/felipebernardes/felipebernardes.github.io.git"
},
"keywords": [
"portfolio",
"personal",
"site"
],
"author": "Felipe Bernardes",
"license": "ISC",
"bugs": {
"url": "https://github.com/felipebernardes/felipebernardes.github.io/issues"
},
"homepage": "https://github.com/felipebernardes/felipebernardes.github.io#readme",
"devDependencies": {
"@parcel/transformer-sass": "^2.3.1",
"parcel": "^2.3.1"
}
}