-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.7 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.7 KB
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
{
"name": "raybo-org",
"version": "2.0.0",
"description": "Personal website and blog for Ray Villalobos",
"scripts": {
"start": "npm-run-all --parallel dev:*",
"dev:sass": "sass --style=expanded ./_site/_process/scss/style.scss ./dev/css/style.css",
"dev:sass-watch": "npm run dev:sass -- --watch",
"dev:eleventy": "ELEVENTY_ENV=development eleventy --serve --quiet",
"dev:del": "rimraf dev",
"build": "run-s prod:*",
"now-build": "run-s prod:*",
"prod:del": "rimraf build",
"prod:bootstrap-rayveal": "sass --style=compressed ./_site/_process/scss/style.scss ./build/css/style.css",
"prod:serve": "ELEVENTY_ENV=production eleventy --output=./build --quiet"
},
"postcss": {
"map": false,
"plugins": {
"postcss-plugin": {}
}
},
"repository": {
"type": "git",
"url": "git://github.com/planetoftheweb/planetoftheweb/planetoftheweb.github.io"
},
"author": {
"name": "Ray Villalobos",
"email": "ray@planetoftheweb.com",
"url": "https://raybo.org/"
},
"license": "MIT",
"devDependencies": {
"@11ty/eleventy": "^0.12.1",
"@11ty/eleventy-navigation": "^0.1.6",
"@11ty/eleventy-plugin-rss": "^1.1.0",
"@11ty/eleventy-plugin-syntaxhighlight": "^2.0.3",
"@11ty/eleventy-upgrade-help": "^1.0.1",
"eleventy-plugin-nesting-toc": "^1.2.0",
"express": "^4.17.1",
"luxon": "^1.24.1",
"markdown-it": "^8.4.1",
"markdown-it-anchor": "^5.3.0",
"mini-css-extract-plugin": "^0.5.0",
"npm-run-all": "^4.1.5",
"sass": "^1.32.8",
"unset-value": "^1.0.0"
},
"dependencies": {
"@fortawesome/fontawesome-free": "^5.13.1",
"animate.css": "^3.7.2",
"bootstrap": "^5.0.1",
"vue": "^2.6.11"
}
}