site/package.json
2022-04-04 18:30:08 +02:00

65 lines
1.9 KiB
JSON

{
"name": "ti-nuage.fr",
"version": "2022.03.29",
"private": true,
"description": "Ti Nuage Website",
"main": "",
"scripts": {
"build": "DEBUG=metalsmith* npm run clean && npm run build:metalsmith",
"build:prod": "NODE_ENV=production npm run build",
"build:metalsmith": "nodejs scripts/run.js build",
"clean": "rimraf dist",
"dev": "npm run build && DEBUG=metalsmith* nodemon scripts/run.js serve",
"server": "npm run build && http-server dist",
"deploy": "npm run build:prod && cd dist && rsync -v -rlptz --relative * $SERVER_PATH",
"lint": "npm run lint:js && npm run lint:css",
"lint:js": "eslint scripts",
"lint:css": "stylelint assets/**/*.css",
"test": "npm run lint && npm run build"
},
"author": "Ti Nuage <contact@ti-nuage.fr>",
"dependencies": {},
"devDependencies": {
"@metalsmith/collections": "^1.2.1",
"@metalsmith/excerpts": "^1.5.1",
"@metalsmith/layouts": "^2.4.0",
"@metalsmith/permalinks": "^2.4.0",
"browser-sync": "^2.27.5",
"bs-fullscreen-message": "^1.1.0",
"clean-css": "^5.1.5",
"cli-table2": "^0.2.0",
"debug": "^4.3.2",
"eslint": "^7.32.0",
"eslint-config-standard": "^16.0.3",
"eslint-plugin-import": "^2.24.2",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^5.1.0",
"eslint-plugin-standard": "4.1.0",
"filesize": "^8.0.0",
"http-server": "^13.0.1",
"jstransformer-nunjucks": "^1.0.0",
"metalsmith": "^2.4.0",
"metalsmith-assets": "^0.1.0",
"metalsmith-clean-css": "^6.1.3",
"metalsmith-markdownit": "^0.5.0",
"metalsmith-rename": "^1.0.0",
"metalsmith-sitemap": "^1.2.2",
"moment": "^2.29.1",
"nodemon": "^2.0.12",
"rimraf": "^3.0.2",
"slug": "^5.1.0",
"stylelint": "^13.13.1",
"stylelint-config-standard": "^22.0.0"
},
"nodemonConfig": {
"delay": 2500,
"ignore": [
"test/*",
"docs/*"
],
"watch": [
"scripts"
]
}
}