-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
27 lines (27 loc) · 943 Bytes
/
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
{
"dependencies": {
"@tailwindcss/typography": "^0.5.15",
"@taplo/lib": "^0.5.0",
"tailwindcss": "^3.4.13"
},
"name": "od-dm-reference",
"version": "1.0.0",
"devDependencies": {
"concurrently": "^9.0.1",
"cross-env": "^7.0.3"
},
"scripts": {
"watch": "concurrently 'npm:watch:css' 'npm:watch:zola'",
"watch:css": "tailwindcss -m -w -i styles/index.css -o static/index.css",
"watch:zola": "zola serve",
"build": "NODE_ENV=production tailwindcss -m -i styles/index.css -o static/index.css; ZOLA_ENV=prod zola build",
"build:search-config": "zola --config config.index.toml build -o index",
"build:search-index": "stork build --input index/toml/index.html --output public/search.st",
"build:index": "npm run build:search-config; npm run build:search-index",
"format": "node tools/format.js"
},
"author": "",
"license": "CC0-1.0",
"description": "",
"type": "commonjs"
}