-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
112 lines (112 loc) · 3.8 KB
/
Copy pathpackage.json
File metadata and controls
112 lines (112 loc) · 3.8 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
{
"name": "rawfeed.social",
"version": "0.1.0",
"description": "A chronological, algorithm-free social RSS feed aggregator and microblogging platform.",
"private": true,
"license": "AGPL-3.0",
"author": "rawfeed.social",
"keywords": [
"microblogging",
"rss",
"social",
"fastify",
"htmx"
],
"engines": {
"node": ">=24.0.0"
},
"scripts": {
"dev": "concurrently \"npm run dev:server\" \"npm run tailwind:watch\"",
"dev:server": "ts-node-dev --respawn --transpile-only src/server.tsx",
"check": "npm run type-check && npm run build && npm run test:ci",
"build": "tsc",
"type-check": "tsc --noEmit",
"scan": "xss-scan",
"start": "node dist/server.js",
"tailwind:build": "npx @tailwindcss/cli -i ./src/styles/input.css -o ./public/css/tailwind.css --minify",
"tailwind:watch": "npx @tailwindcss/cli -i ./src/styles/input.css -o ./public/css/tailwind.css --watch",
"format": "prettier --write .",
"format:check": "prettier --check .",
"migrate:make": "node -r ts-node/register ./node_modules/knex/bin/cli.js migrate:make",
"migrate:latest": "node -r ts-node/register ./node_modules/knex/bin/cli.js migrate:latest --knexfile knexfile.ts",
"migrate:rollback": "node -r ts-node/register ./node_modules/knex/bin/cli.js migrate:rollback --knexfile knexfile.ts",
"seed:make": "node -r ts-node/register ./node_modules/knex/bin/cli.js seed:make",
"seed:run": "node -r ts-node/register ./node_modules/knex/bin/cli.js seed:run --knexfile knexfile.ts",
"types": "kysely-codegen --dialect mysql --out-file ./src/types/database.ts",
"postinstall": "node scripts/copy-assets.cjs",
"sentry:upload": "sentry-cli sourcemaps upload ./dist",
"test": "vitest --watch",
"test:ci": "xss-scan && vitest --run",
"commit": "cz",
"upgrade": "npx npm-check-updates --target minor",
"upgrade:major": "npx npm-check-updates"
},
"dependencies": {
"@aws-sdk/client-s3": "^3.1046.0",
"@aws-sdk/client-ses": "^3.1046.0",
"@aws-sdk/s3-request-presigner": "^3.1046.0",
"@fastify/compress": "^8.3.1",
"@fastify/cookie": "^11.0.2",
"@fastify/csrf-protection": "^7.1.0",
"@fastify/formbody": "^8.0.2",
"@fastify/helmet": "^13.0.2",
"@fastify/jwt": "^10.0.0",
"@fastify/rate-limit": "^10.3.0",
"@fastify/static": "^9.1.3",
"@kitajs/fastify-html-plugin": "^4.2.1",
"@kitajs/html": "^4.2.13",
"@sentry/node": "^10.53.1",
"@tailwindcss/cli": "^4.3.0",
"adm-zip": "^0.5.17",
"bcrypt": "^6.0.0",
"bcryptjs": "^3.0.3",
"bullmq": "^5.76.8",
"classnames": "^2.5.1",
"croner": "^10.0.1",
"date-fns": "^4.1.0",
"dotenv": "^17.4.2",
"fastify": "^5.8.5",
"fastify-metrics": "^13.2.0",
"gray-matter": "^4.0.3",
"htmx.org": "^2.0.10",
"ioredis": "^5.10.1",
"knex": "^3.2.10",
"marked": "^18.0.3",
"mysql2": "^3.22.3",
"nanoid": "^5.1.11",
"prom-client": "^15.1.3",
"robots-parser": "^3.0.1",
"rss-parser": "^3.13.0",
"sanitize-html": "^2.17.4",
"uuid": "^14.0.0",
"vanilla-cookieconsent": "^3.1.0",
"zod": "^4.4.3"
},
"devDependencies": {
"@kitajs/ts-html-plugin": "^4.1.4",
"@sentry/cli": "^3.4.2",
"@types/adm-zip": "^0.5.8",
"@types/bcrypt": "^6.0.0",
"@types/jsonwebtoken": "^9.0.10",
"@types/node": "^24.12.4",
"@types/sanitize-html": "^2.16.1",
"autoprefixer": "^10.5.0",
"commitizen": "^4.3.1",
"concurrently": "^9.2.1",
"cz-conventional-changelog": "^3.3.0",
"kysely-codegen": "^0.20.0",
"postcss": "^8.5.14",
"prettier": "^3.8.3",
"sqlite3": "^5.1.7",
"tailwindcss": "^4.3.0",
"ts-node": "^10.9.2",
"ts-node-dev": "^2.0.0",
"typescript": "^5.9.3",
"vitest": "^4.1.6"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
}
}