-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 2.05 KB
/
Copy pathpackage.json
File metadata and controls
70 lines (70 loc) · 2.05 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
{
"name": "screenshot-api",
"version": "0.0.1",
"description": "",
"author": "",
"private": true,
"license": "AGPL-3.0",
"engines": {
"node": ">=24"
},
"scripts": {
"build": "nest build",
"format": "prettier --write \"src/**/*.ts\" \"test/**/*.ts\"",
"start": "node dist/main",
"start:dev": "nest start --watch",
"start:debug": "nest start --debug --watch",
"lint": "eslint \"{src,apps,libs,test}/**/*.ts\" --fix",
"test": "vitest run --config ./vitest.config.e2e.ts",
"test:watch": "vitest --config ./vitest.config.e2e.ts",
"test:debug": "vitest --inspect-brk --no-file-parallelism --config ./vitest.config.e2e.ts",
"test:e2e": "vitest run --config ./vitest.config.e2e.ts"
},
"dependencies": {
"@fastify/compress": "^8.3.1",
"@fastify/helmet": "^13.0.2",
"@fastify/static": "^9.0.0",
"@nestjs/common": "^11.1.14",
"@nestjs/config": "^4.0.3",
"@nestjs/core": "^11.1.14",
"@nestjs/platform-express": "^11.1.14",
"@nestjs/platform-fastify": "^11.1.14",
"capture-website": "^5.1.0",
"class-transformer": "^0.5.1",
"class-validator": "^0.14.3",
"fastify": "^5.7.4",
"reflect-metadata": "^0.2.2",
"rxjs": "^7.8.2"
},
"devDependencies": {
"@eslint/eslintrc": "^3.3.3",
"@eslint/js": "^10.0.1",
"@nestjs/cli": "^11.0.16",
"@nestjs/schematics": "^11.0.9",
"@nestjs/testing": "^11.1.14",
"@swc/cli": "^0.8.0",
"@swc/core": "^1.15.11",
"@types/express": "^5.0.6",
"@types/node": "^24",
"@types/supertest": "^6.0.3",
"@typescript-eslint/eslint-plugin": "^8.56.0",
"@typescript-eslint/parser": "^8.56.0",
"eslint": "^10.0.1",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.5",
"globals": "^17.3.0",
"prettier": "^3.8.1",
"source-map-support": "^0.5.21",
"supertest": "^7.2.2",
"ts-node": "^10.9.2",
"tsconfig-paths": "^4.2.0",
"typescript": "^5.9.3",
"unplugin-swc": "^1.5.9",
"vitest": "^4.0.18"
},
"pnpm": {
"overrides": {
"fastify": "^5.7.4"
}
}
}