forked from ColinEberhardt/applause-button-server
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 940 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 940 Bytes
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
{
"name": "applause-button-server",
"version": "1.0.0",
"description": "A self-hosted server for the applause button — adds claps/kudos to any web page.",
"license": "MIT",
"type": "module",
"scripts": {
"build": "tsc",
"start": "node dist/index.js",
"dev": "tsx watch src/index.ts",
"test": "vitest run",
"test:coverage": "vitest run --coverage",
"test:watch": "vitest",
"lint": "tsc --noEmit"
},
"dependencies": {
"cors": "^2.8.5",
"express": "^5.1.0",
"express-rate-limit": "^7.5.0",
"ioredis": "^5.6.1",
"rate-limit-redis": "^4.2.0"
},
"devDependencies": {
"@types/cors": "^2.8.17",
"@types/express": "^5.0.2",
"@types/node": "^22.15.0",
"@types/supertest": "^6.0.3",
"@vitest/coverage-v8": "^3.2.4",
"supertest": "^7.2.2",
"tsx": "^4.19.4",
"typescript": "^5.8.3",
"vitest": "^3.1.1"
},
"engines": {
"node": ">=22"
}
}