-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.46 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.46 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
{
"name": "nmgn",
"version": "1.0.0",
"description": "",
"main": "",
"config": {},
"scripts": {
"start": "node app/conversion/generate-index.js",
"Convert_Data": "node app/conversion/convertion.js",
"Compare_images_from_html": "node app/img-compare-html.js",
"Build index": "node app/conversion/generate-index.js",
"Build_website": "node app/build-website/build-website.js",
"tw": "npx tailwindcss -i ./src/css/nmgn-tw.css -o ./output/html-site/css/style-tw.css",
"Build_lunr_index": "node app/build-website/build-lunar-index.js",
"getJson": "node app/getJsonFromGsheets.js",
"imageCaptions": "node app/stores/add-images-captions.js",
"docx headers": "node app/generate-docx-headers.js",
"poststart": "npm run nodemon",
"prestart": "npm run Convert_Data",
"tw watch": "npx tailwindcss -i ./src/css/nmgn-tw.css -o ./output/html-site/css/style-tw.css --watch",
"nodemon": "nodemon -e js,html,md,json -x"
},
"author": "Bas Doppen",
"license": "ISC",
"nodemonConfig": {
"exec": "npm run Build_website & npm run tw",
"delay": "400ms",
"ignore": [
"./output/*"
]
},
"devDependencies": {
"@tailwindcss/typography": "^0.5.9",
"tailwindcss": "^4"
},
"dependencies": {
"@tailwindcss/cli": "^4.1.7",
"fs-extra": "^11.1.1",
"handlebars": "^4.7.7",
"jsdom": "^26.1.0",
"node-pandoc": "^0.3.0",
"nodemon": "^3.0.1",
"turndown": "^7.2.0",
"xml2js": "^0.6.2"
}
}