-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
74 lines (74 loc) · 2.16 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
{
"name": "obscure",
"version": "0.0.1",
"description": "A static site generator for Obsidian vaults based on Elder.js ",
"main": "./src/build.js",
"scripts": {
"start": "npm run dev",
"build": "node ./src/cleanPublic.js && npm run tailwind && npm run build:rollup && npm run build:html",
"build:rollup": "rollup -c",
"build:html": "node ./src/build.js",
"dev": "concurrently \"npm run esbuild\" \"npm run tailwind:dev\"",
"serve": "node ./src/cleanPublic.js && npm run build:rollup && NODE_ENV=production node ./src/server.js",
"esbuild": "NODE_ENV=development node esbuild.js",
"tailwind": "tailwindcss -i ./src/tailwind.css -o ./public/styles.css --minify --postcss",
"tailwind:dev": "tailwindcss -i ./src/tailwind.css -o ./public/styles.css --watch --postcss"
},
"type": "commonjs",
"engines": {
"node": ">= 12.0.0"
},
"dependencies": {
"@elderjs/elderjs": "^1.7.5",
"@elderjs/plugin-images": "^1.3.9",
"@elderjs/plugin-sitemap": "^0.1.10",
"body-parser": "^1.19.0",
"compression": "^1.7.4",
"cors": "^2.8.5",
"del": "^6.0.0",
"dotenv": "^8.2.0",
"fs-extra": "^9.1.0",
"fuse.js": "^6.6.2",
"glob": "^7.1.6",
"hast-util-to-string": "^1.0.4",
"html-entities": "^2.3.3",
"intersection-observer": "^0.12.0",
"jest": "^26.6.3",
"polka": "^0.5.2",
"rehype": "^11.0.0",
"rehype-slug": "^4.0.1",
"remark": "^13.0.0",
"remark-extract-frontmatter": "^3.0.0",
"remark-frontmatter": "^3.0.0",
"remark-gfm": "^1.0.0",
"remark-html": "13.0.1",
"remark-slug": "^6.0.0",
"shiki": "^0.9.6",
"sirv": "^1.0.11",
"svelte": "^3.38.3",
"svelte-preprocess": "^4.6.9",
"unist-util-visit": "^2.0.3",
"vanilla-lazyload": "^17.8.1",
"yaml": "^1.10.0"
},
"devDependencies": {
"concurrently": "^5.3.0",
"@babel/core": "^7.13.10",
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/plugin-transform-runtime": "^7.13.10",
"@babel/preset-env": "^7.13.10",
"@babel/runtime": "^7.13.10",
"autoprefixer": "^10.2.5",
"postcss": "^8.4.14",
"cssnano": "^5.1.7",
"tailwindcss": "^3.1.0",
"nodemon": "^2.0.7",
"rollup": "^2.41.1"
},
"author": "Fernando Garcia",
"license": "MIT",
"files": [
"index.js",
"elderjs"
]
}