-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
56 lines (56 loc) · 1.97 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
{
"name": "rendall.dev",
"version": "0.1.0",
"description": "The website for rendall.dev",
"main": "index.js",
"scripts": {
"build": "yarn run build:css && yarn run build:site && yarn run build:11ty",
"build:11ty": "cd _src && eleventy --output=../dist/ && cd blog && eleventy && cd ../..",
"build:css": "sass ./_src/scss:./dist/css --no-source-map && sass ./_src/scss:./dist/blog/css --no-source-map",
"build:site": "webpack",
"fix": "yarn prettier . --write",
"help": "sass --help",
"prebuild": "yarn run fix && yarn tsc ./_src/ts/slugify.ts && yarn run prebuild:blog",
"prebuild:blog": "rm -rf ./static/blog/images && cp -r ./static/images ./static/blog/",
"start": "concurrently \"yarn run start:root\" \"yarn run start:blog\"",
"start:blog": "http-server ./dist/blog -p 8081 -a localhost -c-1",
"start:root": "http-server ./dist -p 8080 -a localhost --proxy http://localhost:8081",
"test": "test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/rendall/rendall.github.io.git"
},
"author": "Rendall Koski",
"license": "ISC",
"bugs": {
"url": "https://github.com/rendall/rendall.github.io/issues"
},
"homepage": "https://github.com/rendall/rendall.github.io#readme",
"devDependencies": {
"@11ty/eleventy": "^2.0.1",
"@11ty/eleventy-img": "^3.1.0",
"@11ty/eleventy-plugin-rss": "^1.2.0",
"@11ty/eleventy-plugin-syntaxhighlight": "^4.2.0",
"clean-webpack-plugin": "^4.0.0",
"concurrently": "^7.6.0",
"copy-webpack-plugin": "^11.0.0",
"fs-extra": "^11.1.0",
"glob": "^8.1.0",
"http-server": "^14.1.1",
"luxon": "^3.2.1",
"markdown-it": "^13.0.1",
"markdown-it-anchor": "^8.6.6",
"prettier": "^2.8.4",
"sass": "^1.58.0",
"sharp": "^0.31.3",
"stylelint": "^15.10.3",
"ts-loader": "^9.4.2",
"typescript": "^4.9.5",
"webpack": "^5.76.0",
"webpack-cli": "^5.0.1"
},
"dependencies": {
"eleventy-plugin-img2picture": "^4.1.1"
}
}