mirror of https://github.com/requarks/wiki
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
106 lines
2.8 KiB
106 lines
2.8 KiB
{
|
|
"name": "wiki-backend",
|
|
"version": "3.0.0",
|
|
"private": true,
|
|
"description": "The most powerful and extensible open source Wiki software",
|
|
"keywords": [
|
|
"docs",
|
|
"documentation",
|
|
"guides",
|
|
"knowledge base",
|
|
"markdown",
|
|
"wiki",
|
|
"wikis"
|
|
],
|
|
"homepage": "https://github.com/requarks/wiki#readme",
|
|
"bugs": {
|
|
"url": "https://github.com/requarks/wiki/issues"
|
|
},
|
|
"license": "AGPL-3.0",
|
|
"author": "Nicolas Giard",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/requarks/wiki.git"
|
|
},
|
|
"type": "module",
|
|
"main": "index.ts",
|
|
"scripts": {
|
|
"start": "cd .. && node backend",
|
|
"dev": "cd .. && nodemon backend --watch backend --ext js,ts,json",
|
|
"typecheck": "tsc",
|
|
"typecheck:watch": "tsc --watch",
|
|
"ncu": "ncu -i",
|
|
"ncu-u": "ncu -u",
|
|
"db-generate": "drizzle-kit generate --dialect=postgresql --schema=./db/schema.ts --out=./db/migrations --name=main",
|
|
"db-up": "drizzle-kit up --dialect=postgresql --out=./db/migrations"
|
|
},
|
|
"dependencies": {
|
|
"@fastify/compress": "9.0.0",
|
|
"@fastify/cookie": "11.0.2",
|
|
"@fastify/cors": "11.2.0",
|
|
"@fastify/formbody": "8.0.2",
|
|
"@fastify/helmet": "13.0.2",
|
|
"@fastify/passport": "3.0.2",
|
|
"@fastify/sensible": "6.0.4",
|
|
"@fastify/session": "11.1.1",
|
|
"@fastify/static": "9.1.3",
|
|
"@fastify/swagger": "9.7.0",
|
|
"@fastify/swagger-ui": "6.0.0",
|
|
"@fastify/view": "12.0.0",
|
|
"@gquittet/graceful-server": "6.0.10",
|
|
"@iconify/utils": "3.1.4",
|
|
"ajv-formats": "3.0.1",
|
|
"bcryptjs": "3.0.3",
|
|
"chalk": "5.6.2",
|
|
"cheerio": "1.2.0",
|
|
"cron-parser": "5.5.0",
|
|
"drizzle-orm": "1.0.0-beta.15-859cf75",
|
|
"emittery": "2.0.0",
|
|
"es-toolkit": "1.47.1",
|
|
"fastify": "5.8.5",
|
|
"fastify-favicon": "5.0.0",
|
|
"filesize": "11.0.17",
|
|
"fs-extra": "11.3.5",
|
|
"js-yaml": "4.2.0",
|
|
"mime": "4.1.0",
|
|
"nanoid": "5.1.11",
|
|
"node-cache": "5.1.2",
|
|
"pem-jwk": "2.0.0",
|
|
"pg": "8.21.0",
|
|
"poolifier": "5.3.2",
|
|
"pug": "3.0.4",
|
|
"sanitize-html": "2.17.6",
|
|
"semver": "7.8.4",
|
|
"uuid": "14.0.0"
|
|
},
|
|
"optionalDependencies": {
|
|
"sharp": "0.35.3"
|
|
},
|
|
"devDependencies": {
|
|
"@types/fs-extra": "11.0.4",
|
|
"@types/js-yaml": "4.0.9",
|
|
"@types/node": "26.1.1",
|
|
"@types/pem-jwk": "2.0.2",
|
|
"@types/pg": "8.20.0",
|
|
"@types/pug": "2.0.10",
|
|
"@types/sanitize-html": "2.16.1",
|
|
"@types/semver": "7.7.1",
|
|
"drizzle-kit": "1.0.0-beta.15-859cf75",
|
|
"nodemon": "3.1.14",
|
|
"npm-check-updates": "22.2.3",
|
|
"oxfmt": "0.54.0",
|
|
"oxlint": "1.69.0",
|
|
"typescript": "7.0.2"
|
|
},
|
|
"engines": {
|
|
"node": ">=26.0"
|
|
},
|
|
"collective": {
|
|
"type": "opencollective",
|
|
"url": "https://opencollective.com/wikijs",
|
|
"logo": "https://opencollective.com/opencollective/logo.txt"
|
|
},
|
|
"dev": true,
|
|
"releaseDate": "2026-01-01T01:01:01.000Z"
|
|
}
|