-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
56 lines (56 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
{
"name": "vincentp.me",
"version": "11.1.0",
"description": "personal website",
"main": "https://vincentp.me",
"author": "Vincent Pickering",
"homepage": "https://github.com/vipickering/vincentp#readme",
"license": "ISC",
"private": true,
"scripts": {
"clean": "rimraf _site",
"debug": "DEBUG=Eleventy* npx eleventy --serve",
"build:css": "postcss post-process/css/application.css --config configs/postcss.config.js --output src/css/application.min.css",
"dev": "rimraf _site && postcss post-process/css/application.css --config configs/postcss.config.js --output src/css/application.min.css && npx eleventy --serve",
"start": "npx eleventy --serve"
},
"repository": {
"type": "git",
"url": "git+https://github.com/vipickering/vincentp.git"
},
"bugs": {
"url": "https://github.com/vipickering/vincentp/issues"
},
"devDependencies": {
"@11ty/eleventy": "^3.0.0",
"@11ty/eleventy-plugin-rss": "^2.0.2",
"@11ty/eleventy-plugin-syntaxhighlight": "^5.0.0",
"acorn": "^8.14.0",
"css-mqpacker": "^7.0.0",
"cssnano": "^7.0.6",
"immutable-css": "^1.1.2",
"markdown-it": "^14.1.0",
"markdown-it-anchor": "^9.2.0",
"markdown-it-attrs": "^4.2.0",
"markdown-it-emoji": "^3.0.0",
"markdown-it-footnote": "^4.0.0",
"minimist": "^1.2.8",
"postcss": "^8.4.49",
"postcss-cli": "^11.0.0",
"postcss-copy": "^7.1.0",
"postcss-custom-media": "^11.0.5",
"postcss-import": "^16.1.0",
"postcss-preset-env": "^10.1.0",
"postcss-reporter": "^7.1.0",
"postcss-syntax": "^0.36.2",
"rimraf": "^6.0.1",
"stylelint": "^16.10.0",
"trim-newlines": ">=5.0.0"
},
"browserslist": [
"last 1 Chrome versions",
"last 1 Firefox versions",
"last 1 Safari versions",
"last 1 Edge versions"
]
}