-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.71 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.71 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
{
"name": "deanmorgan.me",
"version": "1.0.0",
"description": "A personal blog site built with eleventy and hosted on github pages.",
"scripts": {
"clean:dist": "rm -rf dist/",
"clean:packages": "rm -rf node_modules/",
"clean:assets": "rm -rf src/assets/build/",
"build": "npm-run-all clean:dist clean:assets build:js build:scss build:site",
"watch": "eleventy --watch",
"serve": "eleventy --serve",
"build:site": "eleventy",
"build:js": "rollup -c rollup.config.js",
"watch:js": "rollup -c rollup.config.js -w",
"build:scss": "sass src/assets/css:src/assets/build/css",
"watch:scss": "sass src/assets/css:src/assets/build/css --watch",
"start": "npm-run-all clean:dist clean:assets build:js build:scss --parallel watch:js watch:scss serve",
"test": "mocha test/test*.js",
"debug": "DEBUG=* eleventy"
},
"repository": {
"type": "git",
"url": "git://github.com/deanjmorgan/deanmorgan.me.git"
},
"author": {
"name": "Dean James Morgan",
"email": "hello@deanmorgan.me",
"url": "https://deanmorgan.me/"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/deanjmorgan/deanmorgan.me/issues"
},
"homepage": "https://github.com/deanjmorgan/deanmorgan.me#readme",
"devDependencies": {
"@11ty/eleventy": "^1.0.0",
"@11ty/eleventy-navigation": "^0.3.0",
"@11ty/eleventy-plugin-rss": "^1.1.0",
"@11ty/eleventy-plugin-syntaxhighlight": "^4.0.0",
"expect.js": "^0.3.0",
"jsdom": "^19.0.0",
"luxon": "^2.3.0",
"markdown-it": "^13.0.0",
"markdown-it-anchor": "^8.6.0",
"mocha": "^10.0.0",
"npm-run-all": "^4.1.0",
"rollup": "^2.50.0",
"rollup-plugin-terser": "^7.0.0",
"sass": "^1.34.0"
}
}