pdf-editor/package.json

51 lines
1.6 KiB
JSON
Raw Permalink Normal View History

2023-05-17 01:12:02 +02:00
{
"name": "pdf-editor",
"description": "Editeur de fichier PDF",
"license": "AGPL-3.0",
"author": "Weko",
"version": "1.0.0",
"scripts": {
"prebuild": "npm run clean",
"build": "node_modules/.bin/hugo/hugo --gc --minify",
2023-05-17 17:03:07 +02:00
"prestart": "npm run clean",
"start": "node_modules/.bin/hugo/hugo server --bind=0.0.0.0 --disableFastRender",
"clean": "rm -rf public resources",
"lint": "npm run -s lint:scripts && npm run -s lint:styles",
"lint:scripts": "eslint assets/scripts",
"lint:styles": "stylelint \"assets/styles/**/*.{css,sass,scss,sss,less}\"",
2023-05-17 16:45:50 +02:00
"test": "npm run -s lint",
"postinstall": "hugo-installer --version otherDependencies.hugo --extended --destination node_modules/.bin/hugo"
2023-05-17 01:12:02 +02:00
},
"devDependencies": {
2023-05-17 01:12:02 +02:00
"@fullhuman/postcss-purgecss": "^5.0.0",
"autoprefixer": "^10.4.14",
"bootstrap": "^5.2.3",
"cssnano": "^6.0.1",
"cssnano-preset-advanced": "^6.0.1",
2023-12-15 09:06:58 +01:00
"esbuild": "^0.19.9",
"eslint": "^8.40.0",
"hugo-installer": "^4.0.1",
2023-12-15 09:06:58 +01:00
"pdfjs-dist": "^4.0.269",
2023-05-17 01:12:02 +02:00
"postcss": "^8.4.23",
2023-12-15 09:06:58 +01:00
"postcss-cli": "^11.0.0",
"stylelint": "^16.0.2",
"stylelint-config-standard-scss": "^12.0.0"
},
"otherDependencies": {
2023-12-15 09:06:58 +01:00
"hugo": "0.121.1"
2023-05-17 01:12:02 +02:00
},
"comments": {
"dependencies": {
"@fullhuman/postcss-purgecss": "project",
"autoprefixer": "project",
"bootstrap": "project",
"cssnano": "project",
"cssnano-preset-advanced": "project",
"pdfjs-dist": "project",
"postcss": "project",
"postcss-cli": "project"
},
"devDependencies": {}
}
}