-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
36 lines (36 loc) · 1.02 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
{
"private": true,
"author": "Roman Ožana <[email protected]> (https://ozana.cz)",
"license": "MIT",
"repository": "sphido/sphido.cz",
"type": "module",
"scripts": {
"build": "yarn build:html && yarn build:css",
"build:html": "node --experimental-modules index.js",
"build:css": "tailwindcss -i ./src/sphido.css -o ./public/sphido.css",
"css": "tailwindcss -i ./src/sphido.css -o ./public/sphido.css --watch",
"dev": "watch \"yarn build\" ./content ./src | serve public",
"serve": "serve public"
},
"devDependencies": {
"serve": "^14.2.3",
"watch": "^1.0.2"
},
"dependencies": {
"@sindresorhus/slugify": "^2.2.1",
"@sphido/core": "^2.0.30",
"@sphido/sitemap": "^2.0.25",
"@tailwindcss/forms": "^0.5.7",
"@tailwindcss/typography": "^0.5.14",
"globby": "^14.0.2",
"got": "^14.4.2",
"hast-util-sanitize": "^5.0.1",
"postcss": "^8.4.41",
"prismjs": "^1.29.0",
"remark": "^15.0.1",
"remark-gfm": "^4.0.0",
"remark-html": "^16.0.1",
"tailwindcss": "^3.4.9",
"unist-util-visit": "^5.0.0"
}
}