-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1007 Bytes
/
package.json
File metadata and controls
39 lines (39 loc) · 1007 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
38
39
{
"name": "wuwa-api",
"version": "1.0.0",
"description": "",
"main": "dist/src/server.js",
"scripts": {
"dev": "tsx watch src/server.ts",
"build": "tsc -p tsconfig.json",
"start": "node dist/src/server.js",
"typecheck": "tsc -p tsconfig.json --noEmit",
"validate-data": "tsx scripts/validate-data.ts",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage"
},
"keywords": [],
"author": "",
"license": "ISC",
"type": "commonjs",
"dependencies": {
"@fastify/compress": "^8.3.1",
"@fastify/cors": "^11.2.0",
"@fastify/rate-limit": "^10.3.0",
"@fastify/static": "^9.0.0",
"@fastify/swagger": "^9.6.1",
"@fastify/swagger-ui": "^5.2.4",
"cheerio": "^1.1.2",
"fastify": "^5.6.2",
"sharp": "^0.34.5",
"slugify": "^1.6.6"
},
"devDependencies": {
"@types/node": "^25.0.8",
"pino-pretty": "^13.1.3",
"tsx": "^4.21.0",
"typescript": "^5.9.3",
"vitest": "^4.0.17"
}
}