-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
33 lines (33 loc) · 1.02 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
{
"name": "blirb",
"description": "Blirb: Billy's Little Idiosyncratic React Blog",
"homepage": "https://billy.wenge-murphy.com/projects/blirb",
"dependencies": {
"cheerio": "^1.0.0-rc.5",
"core-util-is": "^1.0.2",
"fs-extra": "^9.1.0",
"module-alias": "^2.2.2",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"sass": "^1.32.8",
"@babel/cli": "^7.13.10",
"@babel/core": "^7.13.10",
"@babel/preset-react": "^7.12.13",
"@babel/register": "^7.13.8"
},
"scripts": {
"serve": "http-server dist",
"clean": "rm -rf dist/*",
"generate": "node generate",
"upload-site": "echo [redacted. figure this one out yourself lol]",
"preview": "yarn clean && yarn generate && yarn serve",
"publish-site": "yarn clean && yarn generate && yarn upload-site"
},
"author": "William Wenge-Murphy <[email protected]> (https://billy.wenge-murphy.com/)",
"_moduleAliases": {
"@components": "components",
"@lib": "lib"
},
"version": "0.1.0",
"license": "AGPL-3.0-or-later"
}